    /* 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;
    }

    /* ---------- Layout ---------- */
    .form-wrap{
    max-width: 980px;
    margin: 0 auto;
    }

    /* Card wrapper (used to frame the embedded form) */
    .card{
    background:#fff;
    border: 1px solid #dbe8f6;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 35, 82, 0.08);
    margin-bottom: 1.25rem;
    }

    .card-title{
    color:#003366;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    }

    .subnote{
    color:#555;
    margin: -0.25rem 0 1rem;
    }

    .fineprint{
    color:#666;
    font-size: .9rem;
    margin-top: .75rem;
    }

    /* ---------- Microsoft Form Embed ---------- */
    .ms-form-embed{
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #e5eef9;
    background: #fff;
    }

    /* Use responsive height instead of huge fixed values */
    .ms-form-embed iframe{
    width: 100%;
    height: min(80vh, 1100px);
    border: 0;
    }

    /* ---------- 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; }
    .footer-top{ grid-template-columns: 1fr; }
    }

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

    .ms-form-embed iframe{
        height: min(88vh, 1200px);
    }
    }
