/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:'Segoe UI', sans-serif;
    background:#0f1f1a;
    color:#f5f5f5;
    line-height:1.6;
}

/* HERO SECTION */
.hero{
    height:100vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    color:white;
}

.hero-overlay{
    background:rgba(0,0,0,0.55);
    padding:30px;
    border-radius:10px;
    width:90%;
    max-width:600px;
}

.hero h1{
    font-size:34px;
    margin-bottom:15px;
}

.hero p{
    font-size:16px;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 25px;
    background:#0f3d2e;
    color:white;
    text-decoration:none;
    border-radius:5px;
    margin-top:15px;
    font-weight:bold;
}

/* CONTENT SECTION */
.content{
    max-width:1100px;
    margin:auto;
    padding:50px 20px;
}

.content h2{
    margin:25px 0 10px;
    color:#d4af37;
}

.content p{
    margin-bottom:15px;
}

ul{
    margin:10px 0 20px 20px;
}

/* PRICE BOX */
.price-box{
    background:#0f3d2e;
    padding:15px;
    text-align:center;
    margin:20px 0;
    border-radius:6px;
    font-weight:bold;
}

/* GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:15px;
    margin-top:20px;
}

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;
}

/* CTA SECTION */
.cta-section{
    text-align:center;
    margin-top:40px;
}

.cta-section h2{
    margin-bottom:10px;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .hero{
        height:70vh;
    }

    .hero h1{
        font-size:24px;
    }

    .hero-overlay{
        padding:20px;
    }

    .content{
        padding:30px 15px;
    }

    .gallery img{
        height:180px;
    }
}