    /* Page spacing */
    .section { padding: 3.5rem 0; }

    /* ---------- Header ---------- */
    .main-header {
    background: #ffffff;      /* white header */
    position: sticky;
    top: 0;
    z-index: 100;
}

    .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 1rem 0;
    }
    .logo-area{
    display:flex;
    align-items:center;
    gap:.75rem;
    }
    .logo{ height: 180px; width:auto; }
    .logo-text h1 {
    color: #003366;
    font-size: 1.4rem;
    margin: 0;
    }

    .logo-text p {
    color: #003366;
    font-size: 0.9rem;
    margin: 0;
    }

    .logo-name {
    color: #003366;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}


    .main-nav ul{
    list-style:none;
    display:flex;
    gap:1.5rem;
    margin:0;
    padding:0;
    }
    .main-nav a{
    font-size:1.20rem;
    color: #003366;
    font-weight:600;
    position:relative;
    padding-bottom:.2rem;
    }

    .main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    height:2px;
    width:0%;
    background:#0096ff;
    transition: width .25s ease;
    }
    .main-nav a:hover::after,
    .main-nav a.active::after{
    width:100%;
    }

    /* ---------- Page Hero ---------- */
    .page-hero{
    background:#003366;
    padding: 1.00rem 0;
    }
    .page-hero-inner h1{
    color:#ffffff;
    font-size: 2.4rem;
    margin-bottom:.6rem;
    }
    .page-hero-inner p{
    color:#ffffff;
    max-width: 52rem;
    }

    /* ---------- About Layout ---------- */
    .about-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
    }

    .about-card{
    background:#ffffff;
    border: 1px solid #dbe8f6;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(0, 35, 82, 0.08);
    }

    .about-card h3{
    color:#003366;
    font-size:1.35rem;
    margin-bottom:.75rem;
    }

    .about-card p{
    color:#444;
    margin-bottom:.75rem;
    }

    .checklist{
    padding-left: 1.1rem;
    color:#444;
    }

    .checklist li{
    margin-bottom:.75rem;
    }

    /* ---------- Team ---------- */
    .section-header{
    margin-bottom: 1.25rem;
    }

    .section-title{
    color:#003366;
    font-size: 2rem;
    margin-bottom:.35rem;
    }

    .section-header p{
    color:#555;
    }

    .team-section{
    text-align: center;
    }

    .team-grid{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;   /* ✅ allow full width */
    }

    /* Make the card fill the container but not get insanely wide */
    .team-card{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    }

    /* IMPORTANT: don’t force 800px height — it causes weird cropping */
    .team-photo{
    width: 100%;
    height: auto;
    max-height: 850px;
    object-fit: cover;
}
    .team-card h4{
    color:#003366;
    font-size: 1.2rem;
    padding: 1rem 1rem 1rem;
    margin: 0;
    }

    /* ---------- Serving ---------- */
    .serving-card{
    background:#f4f8ff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #dbe8f6;
    }

    .serving-card h3{
    color:#003366;
    margin-bottom:.5rem;
    }

    /* ---------- Footer ---------- */
    .main-footer{
    background:#003366;
    color:#fff;
    padding-top: 2.5rem;
    }

    .footer-top{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #284765;
    }

    .footer-column h4{
    margin-bottom:.75rem;
    font-size: 1.40rem;
    }

    .footer-column p{
    font-size:1.20rem;
    color:#cfd9e5;
    margin-bottom:.35rem;
    }

    .social-row{
    display:flex;
    gap:.6rem;
    align-items:center;
    margin-bottom:.75rem;
    }

    .social-icon{
    width: 44px;        /* ⬅️ bigger & ADA tap-target friendly */
    height: 44px;
    object-fit: contain;
}

    .logo-Medium{
    width: 260px;   /* ⬅️ matches your desired size */
    max-width: 100%;
    height: auto;
}


    .footer-bottom-wrapper{
    background:#00172c;
    }

    .footer-bottom{
    padding: .9rem .75rem;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.25rem;
    }

    .footer-bottom p{
    font-size:1rem;
    color:#cfd9e5;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 900px){
    .header-inner{
        flex-direction: column;
        align-items:flex-start;
        gap:.75rem;
    }
    .main-nav ul{ flex-wrap: wrap; }

    .about-grid{ grid-template-columns: 1fr; }
    .footer-top{ grid-template-columns: 1fr; }
    }

    @media (max-width: 720px){
    .page-hero{ padding: 2rem 0; }
    .page-hero-inner h2{ font-size: 2rem; }

    .team-photo{
        height: min(55vh, 360px); /* even better on phones */
    }
    }
