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

html{
    scroll-behavior:smooth;
}

body{
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.6;
    color:#333;
    background:#fff;
}

.container{
    width:min(1100px,92%);
    margin:auto;
}

.hero{
    position:relative;
    height:70vh;
    min-height:520px;
    overflow:hidden;
}

.hero>img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero .logo {
    width: 125px;
    height: 35px;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

nav{
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:2;
    padding:20px 0;
}

nav .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h1{
    color:white;
    font-size:1.5rem;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
}

.hero-content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content h2{
    font-size:3.5rem;
    margin-bottom:20px;
    color:white;
}

.hero-content p{
    max-width:700px;
    font-size:1.2rem;
    margin-bottom:30px;
}

.button{
    display:inline-block;
    background:white;
    color:#1d4d66;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
}

section{
    padding:80px 0;
}

.light{
    background:#f5f7f8;
}

h2{
    margin-bottom:25px;
    color:#1d4d66;
}

.visit-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

iframe{
    width:100%;
    height:300px;
    border:0;
    border-radius:10px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.card h3,
.card p{
    padding:0 24px;
}

.card h3{
    margin:22px 0 10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.fb-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color: #0866FF;
}

.fb-icon{
    width:22px;
    height:22px;
    fill:#0866FF;
}


.card p{
    padding-bottom:24px;
}

.centre{
    text-align:center;
}

.socials{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.socials a{
    background:#1d4d66;
    color:white;
    text-decoration:none;
    padding:14px 26px;
    border-radius:40px;
}

footer{
    background:#1d4d66;
    color:white;
    padding:60px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-grid h2,
.footer-grid h3{
    color:white;
    margin-bottom:15px;
}

.footer-grid p{
    margin-bottom:15px;
}

.footer-grid a{
    color:white;
    text-decoration:underline;
}


@media(max-width:800px){
    .hero-content h2{
        font-size:2.4rem;
    }
    .visit-grid{
        grid-template-columns:1fr;
    }
    nav .container{
        flex-direction:column;
        gap:15px;
    }
    nav ul{
        gap:18px;
    }
    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }
}
