/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

/* Header */
header {
  background-color: #004aad;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #003c8f;
}

nav ul li {
  margin: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff914d;
}

/* Sections */
section {
  padding: 60px 20px;
  background-color: white;
  margin-bottom: 20px;
  border-radius: 8px;
}

section h2 {
  color: #004aad;
  margin-bottom: 20px;
  text-align: center;
}

/* Buttons */
button, .btn {
  background-color: #ff914d;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #e66f22;
}

/* Footer */
footer {
  background-color: #003c8f;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }
}
