:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #faf9f5;
  color: #111111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #1f4e8b 0%, #2b8b72 60%, #2d3a6f 100%);
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 35%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.88;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin: 0;
  line-height: 1.05;
}

.hero p {
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 1.5rem auto 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  background: #ffb32b;
  color: #111;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

main {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.section-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
}

.section-card.reverse {
  direction: rtl;
}

.section-card.reverse .section-text {
  text-align: right;
}

.section-card.reverse .section-image {
  direction: ltr;
}

.section-card .section-text {
  padding: 2.5rem;
}

.section-card h2 {
  margin-top: 0;
  font-size: 2rem;
}

.section-card p,
.section-card ul {
  margin: 1rem 0 0;
  font-size: 1rem;
  color: #4f4f4f;
}

.section-card ul {
  padding-left: 1.2rem;
}

.section-card li {
  margin-bottom: 0.9rem;
}

.section-image {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.image-about {
  background-image: url("https://images.unsplash.com/photo-1506973035872-a4f20f3f0bf0?auto=format&fit=crop&w=1200&q=80");
}

.image-highlights {
  background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1200&q=80");
}

.image-culture {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.info-grid article {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.info-grid h3 {
  margin-top: 0;
}

footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: #6d6d6d;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .section-card {
    grid-template-columns: 1fr;
  }

  .section-card.reverse {
    direction: ltr;
  }

  .section-card.reverse .section-text {
    text-align: left;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-card .section-text {
    padding: 2rem 1.5rem;
  }
}
