body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.main-header {
  background-color: #87ceeb; /* Sky blue */
  padding: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-svg {
  height: 60px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .line1,
.logo-text .line2,
.logo-text .line3 {
  font-weight: bold;
  color: #002366;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: #002366;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #0056b3;
}

.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #002366;
  cursor: pointer;
}

.cta-section {
  text-align: center;
  padding: 4rem 1rem;
}

.cta-section h1 {
  margin-bottom: 1rem;
  color: #002366;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #444;
}

.cta-button {
  background: #002366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #001a4d;
}

/* ========== RESPONSIVE ========= */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    padding: 0.5rem 0;
  }
}
