*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f4f4;
}

.container{
    width:95%;
    margin:auto;
    padding-top:20px;
}

/*==================== TOP LAYOUT ====================*/

.top-header{

    display:flex;
    align-items:flex-start;
    gap:25px;

}

/*==================== LEFT COLUMN ====================*/

.director{

    width:340px;

    display:flex;
    flex-direction:column;

}

.director img{

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:15px;
    border:4px solid #0056d6;

    margin-bottom:20px;

}

.director-message{

    width:100%;

    background:white;

    padding:20px;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    text-align:justify;

}

.director-message h3{

    color:#003366;

    margin-bottom:12px;

    padding-bottom:10px;

    border-bottom:2px solid #0056d6;

}

.director-message p{

    font-size:15px;

    line-height:1.6;

    color:#444;

}

/*==================== CENTER ====================*/

.logo{

    flex:1;

    display:flex;

    flex-direction:column;

}

.welcome-box{

    width:100%;

    height:280px;

    background:white;

    border-radius:15px;

    border:4px solid #0056d6;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.welcome-box h1{

    font-size:34px;

    color:#003366;

}

.welcome-box h2{

    font-size:42px;

    color:#0056d6;

    margin:8px 0;

}

.welcome-box p{

    font-size:18px;

    color:#555;

    font-style:italic;

}

.logo img{

    width:100%;
    height:440px;

    margin-top:20px;

    display:block;

}

/*==================== RIGHT COLUMN ====================*/

.right-side{

    width:340px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-box{

    background:white;

    border-radius:15px;

    border:4px solid #0056d6;

    padding:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.contact-box h3{

    color:#003366;

    border-bottom:2px solid #0056d6;

    padding-bottom:10px;

    margin-bottom:15px;

}

.contact-box p{

    margin:12px 0;

    font-size:16px;

}

.contact-box i{

    color:#0056d6;

    width:25px;

}

/*==================== SMALL CARDS ====================*/

.card{

    background:white;

    border-radius:15px;

    border:4px solid #0056d6;

    padding:18px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    text-align:center;

}

.small-card{

    width:100%;

}

.small-card i{

    font-size:34px;

    color:#0056d6;

    margin-bottom:10px;

}

.small-card h2{

    font-size:19px;

    color:#003366;

    margin-bottom:10px;

}

.small-card p{

    font-size:14px;

    color:#444;

    line-height:1.0;

    margin-bottom:15px;

}

.small-card button{

    background:#0056d6;

    color:white;

    border:none;

    border-radius:25px;

    padding:10px 20px;

    cursor:pointer;

    transition:.3s;

}

.small-card button:hover{

    background:#cc0000;

}

/*==================== FOOTER ====================*/

.footer-blue{

    margin-top:40px;

    background:#0056d6;

    min-height:180px;

    border-radius:18px 18px 0 0;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    padding-bottom:25px;

}

.footer-blue h2{

    color:white;

    font-size:22px;

}

/*==================== RESPONSIVE ====================*/

@media(max-width:1200px){

    .top-header{

        flex-direction:column;

        align-items:center;

    }

    .director,
    .logo,
    .right-side{

        width:100%;

        max-width:700px;

    }

}

@media(max-width:768px){

    .director img{

        height:auto;

    }

    .welcome-box{

        height:auto;

        padding:30px 15px;

    }

    .welcome-box h2{

        font-size:32px;

    }

}
/* ==========================================
   STUDY MATERIAL PANEL
   ========================================== */

.study-panel{
    margin-top:20px;
    width:100%;
}

.accordion{
    width:100%;
    background:#0056d6;
    color:white;
    border:none;
    padding:14px 18px;
    margin-top:10px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    text-align:left;
    cursor:pointer;
    transition:.3s;
}