/* ============== RESET & BASE ============== */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Times New Roman', Times, serif;
  line-height: 1.6;
  color: #222;
  background: #000;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============== NAVIGATION ============== */
.header {
  background: #0a2540;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
}
.nav-menu {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}
.nav-link:hover, .nav-link.active { opacity: 0.7; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  background: #0a2540;
  padding: 1rem 20px;
  flex-direction: column;
  gap: 1rem;
}

/* ============== HERO & SECTIONS ============== */
.hero {
  background: linear-gradient(rgba(10,37,64,0.85), rgba(10,37,64,0.85)), #0a2540;
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-subtext { font-size: 1.25rem; max-width: 800px; margin: 0 auto; }

.intro, .partnership-priorities, .featured-partner, .criteria, .cta {
  padding: 80px 0;
}
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: #0a2540; }
.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}
.three-column { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* Partner Block */
.partner-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.partner-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CTA Button */
.button {
  display: inline-block;
  background: #0a2540;
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(10,37,64,0.3); }

/* Footer */
.footer {
  background: #0a2540;
  color: #ddd;
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer a { color: #ddd; margin: 0 15px; text-decoration: none; }
.footer-disclaimer { margin-top: 1.5rem; font-size: 0.9rem; opacity: 0.7; }

/* Fix frosted glass on all Safari */
.backdrop-blur {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Fix select dropdowns on older iOS */
select {
  -webkit-appearance: none;
  appearance: none;
}

/* Fix flex gap on older Safari */
.flex-gap {
  gap: 1rem;
  /* fallback if needed */
}

/* ============== RESPONSIVE (iOS & Android perfect) ============== */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-menu.active { display: flex; }

  .hero h1 { font-size: 2.4rem; }
  .partner-block { grid-template-columns: 1fr; gap: 2rem; }
  .three-column { grid-template-columns: 1fr; }
}