html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f9fb;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #005bac;
}

section, header, footer {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.hero {
  background: linear-gradient(to right, #cce0f5, #e6f2ff);
  text-align: center;
  padding: 100px 20px;
  border-bottom: 1px solid #d0e0f0;
  margin-top:60px
}

.hero h1 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #005bac;
  color: #fff;
}

.btn-primary:hover {
  background-color: #004080;
}

.btn-secondary {
  background-color: #ffffff;
  color: #005bac;
  border: 2px solid #005bac;
}

.btn-secondary:hover {
  background-color: #e6f0ff;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #002d5c;
}

.features ul {
  list-style-type: none;
  padding-left: 0;
}

.features li {
  margin-bottom: 15px;
  padding-left: 20px;
}

.features li::before {
  content: "✈️";
  left: 0;
  top: 2px;
}

.testimonials blockquote {
  background-color: #fff;
  border-left: 5px solid #005bac;
  margin: 20px 0;
  padding: 20px;
  font-style: italic;
  color: #555;
}

.testimonials cite {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-weight: bold;
  color: #003366;
}

.footer {
  background-color: #002244;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.footer nav a {
  color: #aad4ff;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer nav a:hover {
  text-decoration: underline;
}

.small-hero {
  padding: 60px 20px;
  margin-top:60px
}

.contact-section {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 20px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: bold;
  color: #003366;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #005bac;
  box-shadow: 0 0 0 2px rgba(0, 91, 172, 0.2);
}

.contact-info {
  margin-top: 40px;
  background: #f1f5fa;
  padding: 20px;
  border-radius: 6px;
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #002d5c;
}
.about-section,
.values-section,
.team-section {
  background-color: #ffffff;
  margin-top: 30px;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.core-values {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.core-values li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.core-values li::before {
  content: "🌟";
  position: absolute;
  left: 0;
  top: 2px;
}
.map-container {
      position: relative;
      max-width: 600px;
      margin: auto;
    }
    .planet-image {
      width: 100%;
      height: auto;
      display: block;
    }
    svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .pin-link {
      pointer-events: auto;
      fill: transparent;
    }