
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f3f4f6;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  color: #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 40px;
  width: 40px;
  border-radius: 999px;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #e5e7eb;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background-color: rgba(239, 246, 255, 0.15);
}

.page-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.image-placeholder,
.video-placeholder {
  border-radius: 1.25rem;
  border: 2px solid #93c5fd;
  background: #eff6ff;
  padding: 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  color: #1d4ed8;
}


.image-placeholder {
  min-height: 220px;
}

.video-placeholder {
  min-height: 180px;
}


.image-wrapper img.media-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.media-video {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.quick-links {
  margin-top: 3rem;
}

.quick-links h2 {
  margin-bottom: 1.25rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.info-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5563;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

h1 {
  font-size: clamp(1.75rem, 2.3vw, 2.1rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.text-section {
  margin-top: 2rem;
}

.text-section h2 {
  margin-bottom: 0.5rem;
}

.text-section p {
  line-height: 1.7;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.site-footer {
  padding: 1.25rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 60px;
    background: #0f172a;
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.5rem 0.75rem;
  }

  .page-content {
    padding-inline: 1rem;
  }
}
