* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  background-color: #fffaf5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Header */
header {
  background-color: #ffcc00;
  padding: 25px 0;
  color: #1a1a1a;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  text-align: center;
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 35px;
  flex-wrap: wrap;
}

nav ul li a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
}

nav ul li a:hover {
  color: #ff6600;
}

/* Section Styling */
.section {
  padding: 60px 25px;
  background-color: #ffffff;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(255, 204, 0, 0.1);
}

.section h2 {
  font-size: 2em;
  margin-bottom: 25px;
  color: #ff6600;
  border: 3px solid #ff6600;
  text-align: center;
  padding-left: 15px;
  font-weight: 700;
}

.section h3 {
  font-size: 1.25em;
  margin: 20px 0 10px;
  color: #444;
}

.section p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #333;
}

.section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.section ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* Footer */
footer {
  text-align: center;
  background-color: #ffefc7;
  padding: 20px;
  margin-top: 30px;
  font-size: 0.95em;
  color: #444;
}
