body{
    margin:0;
    font-family:Poppins,sans-serif;
    color:#222;
}

header{
    background:white;
    padding:20px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

header h1{
    margin:0;
    color:#0a3d62;
}

.tagline{
    color:gray;
    font-style:italic;
}

.top-buttons{
    display:flex;
    gap:10px;
}

.top-buttons button{
    padding:10px 20px;
    border:none;
    border-radius:8px;
    background:#1e90ff;
    color:white;
    cursor:pointer;
}

.hero{
    min-height:500px;
    background:
    linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),
    url("assets/beach-bg.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding:40px;
}

.hero h2{
    max-width:900px;
    font-size:40px;
}

.hero p{
    font-size:20px;
}

.hero-btn{
    background:#ff9800;
    color:white;
    padding:15px 30px;
    border:none;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

.announcement-box{
    background:white;
    color:black;
    max-width:800px;
    width:100%;
    padding:20px;
    border-radius:15px;
    margin:30px auto;
}

.features{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    padding:50px;
}

.feature{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.cards{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    padding:50px;
}

.card{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    cursor:pointer;
}

.about,
.testimonials,
.cta{
    padding:60px;
    text-align:center;
}

.testimonial{
    background:white;
    padding:25px;
    border-radius:15px;
    margin:20px auto;
    max-width:700px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.whatsapp-chat{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    cursor:pointer;
}

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
    }

    .hero h2{
        font-size:28px;
    }

}