
body{
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
    color:#333;
    background:#f8f9fb;
}
header{
    background: linear-gradient(90deg,#2a8dd2,#5bc266);
    color:white;
    padding:15px 40px;
    position:sticky;
    top:0;
    z-index:1000;
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
nav img{
    height:70px;
}
nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}
nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px 8%;
    gap:40px;
    background:white;
}
.hero img{
    width:380px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
.hero-text h1{
    font-size:48px;
    margin-bottom:15px;
    color:#1f4068;
}
.hero-text p{
    font-size:20px;
    line-height:1.6;
}
.btn{
    display:inline-block;
    background:#2a8dd2;
    color:white;
    padding:14px 24px;
    border-radius:8px;
    text-decoration:none;
    margin-top:20px;
    font-weight:bold;
}
.section{
    padding:60px 8%;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.card{
    background:white;
    border-radius:16px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}
.card h3{
    color:#1f4068;
}
.locations{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}
.location{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}
.gallery img{
    width:100%;
    border-radius:18px;
}
footer{
    background:#1f4068;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:50px;
}
.page-header{
    background:linear-gradient(90deg,#2a8dd2,#5bc266);
    color:white;
    padding:80px 8%;
}
.content{
    padding:50px 8%;
}
@media(max-width:900px){
    .hero{
        flex-direction:column;
    }
    .hero img{
        width:100%;
        max-width:400px;
    }
    nav{
        flex-direction:column;
        gap:15px;
    }
}
