:root{
    --primary-blue:#263489;
    --accent-red:#ec1d25;
    --text-black:#000000;
    --bg-light:#f4f6f9;
    --white:#fff;
}

body{
    background:var(--bg-light);
    color:var(--text-black);
    font-family:'Segoe UI',sans-serif;
    line-height:1.8;
}



.section-space{
    margin-bottom:70px;
}

.hero-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.hero-content{
    padding:50px;
}

.hero-content h1{
    font-size:42px;
    color:var(--primary-blue);
    font-weight:700;
    margin-bottom:20px;
    position:relative;
}

.hero-content h1:after{
    content:'';
    width:90px;
    height:5px;
    background:var(--accent-red);
    display:block;
    margin-top:15px;
    border-radius:20px;
}

.hero-content p{
    font-size:16px;
    color:#444;
    text-align:justify;
}

.image-stack{
    display:flex;
    flex-direction:column;
    gap:25px;
    padding:35px;
}

.image-stack img{
    width:100%;
    border-radius:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    transition:.4s;
}

.image-stack img:hover{
    transform:translateY(-6px);
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--primary-blue);
    font-weight:700;
    display:inline-block;
    position:relative;
    padding-bottom:15px;
}

.section-title h2:after{
    content:'';
    width:80px;
    height:4px;
    background:var(--accent-red);
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

.info-card{
    background:#fff;
    border-radius:16px;
    padding:40px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
}

.info-card p{
    text-align:justify;
    color:#555;
}

.image-card{
    background:#fff;
    padding:15px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.image-card img{
    width:100%;
    border-radius:10px;
}

@media(max-width:991px){

.hero-content{
padding:35px;
}

.hero-content h1{
font-size:34px;
}

.image-stack{
padding:20px;
}

.info-card{
margin-top:30px;
}

}

.facility-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.facility-title{
    color:#263489;
    font-size:38px;
    font-weight:700;
    margin-bottom:25px;
}

.facility-img{
    float:right;
    width:360px;
    margin:0 0 20px 30px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.facility-card p{
    text-align:justify;
    line-height:1.9;
    color:#555;
}

.facility-card::after{
    content:"";
    display:block;
    clear:both;
}

@media (max-width:991px){

    .facility-img{
        float:none;
        display:block;
        width:100%;
        margin:0 0 20px;
    }

    .facility-title{
        font-size:30px;
    }

}




.facility-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.facility-title{
    color:#263489;
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.facility-card p{
    text-align:justify;
    line-height:1.9;
    color:#555;
}

/* Two images side by side */
.facility-gallery{
    display:flex;
    gap:25px;
    justify-content:center;
    margin:35px 0;
}

.facility-gallery img{
    width:48%;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.3s;
}

.facility-gallery img:hover{
    transform:translateY(-5px);
}

@media(max-width:991px){

    .facility-gallery{
        flex-direction:column;
    }

    .facility-gallery img{
        width:100%;
    }

    .facility-title{
        font-size:32px;
    }

}