/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f7f7f7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #004080;
  color: #fff;
  padding: 1rem 0;
}

header h1 {
  text-align: center;
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

nav ul li {
  margin: 0 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url('../assets/hero.jpg') center/cover no-repeat;
  color: white;
  padding: 5rem 0;
  text-align: center;
  background-color: #003366;
}

.hero h2 {
  font-size: 2rem;
}

.hero p {
  margin-top: 1rem;
}

/* Section Styling */
section {
  padding: 4rem 0;
  background-color: #fff;
  margin-top: 1rem;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #004080;
}

.services-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.services-list li {
  background: #e0ebf5;
  padding: 1rem 2rem;
  margin: 0.5rem;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #002244;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .services-list {
    flex-direction: column;
    align-items: center;
  }

  .services-list li {
    width: 80%;
  }
}
