.page-header {
    display: flex;
    justify-content: center;
    padding: 60px 20px 30px;
}

.page-header__content {
    max-width: 900px;
    width: 100%;
    padding: 40px 35px;
    background: rgba(10, 35, 55, 0.95);
    border: 1px solid rgba(255, 107, 74, 0.22);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.page-header__content h1 {
    font-size: 3rem;
    margin-bottom: 14px;
    color: var(--light);
}

.page-header__content p {
    font-size: 1.15rem;
    color: rgba(224, 247, 250, 0.92);
    max-width: 760px;
    margin: 0 auto;
}

.mission-section {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.section-intro {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.section-intro h2 {
    color: var(--primary);
    margin-bottom: 22px;
}

.section-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.95;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.highlight {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 184, 212, 0.12);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight:hover,
.highlight:focus-visible {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.highlight h3 {
    margin-bottom: 14px;
    color: var(--light);
}

.highlight p {
    opacity: 0.9;
}

.team-section {
    margin-top: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.team-card {
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 184, 212, 0.12);
    text-align: center;
    padding-bottom: 24px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover,
.team-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 22px 38px rgba(255, 107, 74, 0.24);
}

.team-image {
    height: 220px;
    background: linear-gradient(180deg, rgba(0, 184, 212, 0.55), rgba(255, 107, 74, 0.55)),
                url('https://via.placeholder.com/600x600/05668D/FFFFFF?text=Team') center/cover no-repeat;
    background-blend-mode: overlay;
}

.team-card h3 {
    margin: 22px 0 8px;
    color: var(--primary);
}

.team-card p {
    color: #BCCFD6;
    opacity: 0.95;
}

/* ==================== MOBILE HAMBURGER MENU ==================== */
.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .top-banner {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .nav-toggle-label {
    display: block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    transition: background 0.3s ease;
    font-weight: 500;
    border: none;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-toggle-label:hover {
    background: var(--accent);
  }

  nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #051C2B;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: max-height 0.3s ease;
    max-height: 0;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid rgba(0, 184, 212, 0.2);
    pointer-events: none;
  }

  .nav-toggle:checked ~ nav {
    max-height: 600px;
    pointer-events: auto;
  }

  nav a {
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 184, 212, 0.2);
    color: var(--light);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: var(--accent);
  }

  .cart-icon {
    margin: 10px 0;
    align-self: center;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* ==================== SNIPCART OVERLAY FIX ==================== */
#snipcart {
    position: relative !important;
    z-index: 2000 !important;
}
