/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f7f7f9;
  color: #333;
  line-height: 1.6;
}

/* Layout */
header, footer {
  text-align: center;
  padding: 20px;
  background: #fac253;
  color: black;
}

header h1, footer p {
  margin: 0;
}

main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Sections */
section {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2, h3 {
  color: #2b3a67;
  margin-top: 0;
}

/* Lists */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 6px;
}

/* Link Button */
.button {
  display: inline-block;
  padding: 12px 20px;
  background: #fac253;
  color: black !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.button:hover {
  background: #3d5bdd;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.8;
}
