v 
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    background:#f8f9fa;

    color:#202122;

    font-family:Arial, Helvetica, sans-serif;

    line-height:1.7;

}





a{

    color:#0645ad;

    text-decoration:none;

}


a:hover{

    text-decoration:underline;

}






header{

    background:#ffffff;

    border-bottom:1px solid #a2a9b1;

}



.navbar{

    width:90%;

    margin:auto;

    padding:20px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.logo{

    font-size:32px;

    font-weight:bold;

    color:#202122;

}



.navbar ul{

    display:flex;

    list-style:none;

    gap:20px;

}



.navbar li{

    font-size:16px;

}







.title{

    width:90%;

    margin:auto;

    padding:40px 0;

}



.title h1{

    font-family:Georgia,serif;

    font-size:48px;

    font-weight:normal;

}



.title p{

    color:#54595d;

    font-size:18px;

}







main{

    width:90%;

    margin:auto;

}





.infobox{

    float:right;

    width:320px;

    background:#f8f9fa;

    border:1px solid #a2a9b1;

    margin-left:30px;

    margin-bottom:25px;

    padding:15px;

}



.infobox h3{

    text-align:center;

    background:#eaecf0;

    border-bottom:1px solid #a2a9b1;

    padding:10px;

    font-family:Georgia,serif;

}



.infobox img{

    width:100%;

    margin:15px 0;

}



.infobox table{

    width:100%;

    border-collapse:collapse;

}



.infobox td{

    border:1px solid #a2a9b1;

    padding:8px;

    font-size:14px;

}






section{

    background:white;

    border:1px solid #a2a9b1;

    margin:30px 0;

    padding:30px;

    border-radius:5px;

}



section h2{

    font-family:Georgia,serif;

    font-size:32px;

    font-weight:normal;

    border-bottom:1px solid #a2a9b1;

    padding-bottom:8px;

    margin-bottom:20px;

}



section p{

    font-size:18px;

    text-align:justify;

}


.cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    gap:20px;

    margin-top:25px;

}



.card{

    background:#ffffff;

    border:1px solid #c8ccd1;

    border-radius:5px;

    padding:20px;

    transition:.2s;

}



.card:hover{

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

}



.card h3{

    font-family:Georgia,serif;

    text-align:center;

    font-size:22px;

    color:#202122;

    margin-bottom:12px;

}



.card p{

    text-align:center;

    font-size:16px;

}







.image-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    border:1px solid #a2a9b1;

    margin-bottom:15px;

}



.image-card h3{

    color:#0645ad;

}






.facts{

    padding-left:30px;

}



.facts li{

    margin:12px 0;

    font-size:18px;

}



.facts li::marker{

    color:#0645ad;

}







.gallery{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}



.gallery img{

    width:100%;

    height:240px;

    object-fit:cover;

    border:1px solid #a2a9b1;

}



.gallery img:hover{

    opacity:.8;

}







footer{

    margin-top:40px;

    background:#eaecf0;

    border-top:1px solid #a2a9b1;

    text-align:center;

    padding:30px;

}



footer h2{

    font-family:Georgia,serif;

    font-size:30px;

    font-weight:normal;

}



footer p{

    color:#54595d;

}







main::after{

    content:"";

    display:block;

    clear:both;

}








@media(max-width:900px){


.navbar{

    flex-direction:column;

    gap:20px;

}



.navbar ul{

    flex-wrap:wrap;

    justify-content:center;

}



.title h1{

    font-size:38px;

}



.infobox{

    float:none;

    width:100%;

    margin:0 0 25px 0;

}



section{

    padding:20px;

}



section h2{

    font-size:26px;

}



section p{

    font-size:16px;

}


}



@media(max-width:600px){


body{

    font-size:15px;

}



.navbar{

    width:95%;

    padding:15px 0;

}



.logo{

    font-size:26px;

}



.navbar ul{

    gap:12px;

}



.navbar a{

    font-size:14px;

}



.title{

    width:95%;

    padding:25px 0;

}



.title h1{

    font-size:32px;

}



.title p{

    font-size:15px;

}



main{

    width:95%;

}



section{

    margin:20px 0;

    padding:15px;

}



section h2{

    font-size:24px;

}



.cards{

    grid-template-columns:1fr;

}



.card{
    
    padding:15px;

}



.card h3{

    font-size:20px;

}



.image-card img{

    height:180px;

}



.gallery{

    grid-template-columns:1fr;

}



.gallery img{

    height:200px;

}



.infobox td{

    font-size:13px;

}



footer h2{

    font-size:24px;

}


}






section{

    animation:appear .4s ease;

}



@keyframes appear{


from{

    opacity:0;

    transform:translateY(10px);

}


to{

    opacity:1;

    transform:translateY(0);

}


}






::selection{

    background:#0645ad;

    color:white;

}






::-webkit-scrollbar{

    width:12px;

}



::-webkit-scrollbar-track{

    background:#eaecf0;

}



::-webkit-scrollbar-thumb{

    background:#a2a9b1;

    border-radius:10px;

}



::-webkit-scrollbar-thumb:hover{

    background:#72777d;

}