#gallery{
    background:#ffffff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.gallery-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-6px);
}

.gallery-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.gallery-content{
    padding:25px;
}

.gallery-content h3{
    margin-bottom:12px;
}

.gallery-content p{
    color:#64748b;
}

@media(max-width:900px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-card img{
    height:220px;
}

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#1e293b;
    background:#f8fafc;
    line-height:1.6;
}

.container{
    width:min(1100px,90%);
    margin:auto;
}

header{
    position:fixed;
    width:100%;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
    z-index:1000;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:1.6rem;
    font-weight:700;
    color:#2e7d32;
}

nav ul{
    display:flex;
    list-style:none;
    gap:28px;
}

nav a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#2e7d32;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#e8f5e9,#ffffff);
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:3.2rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:1.15rem;
    color:#475569;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 28px;
    background:#2e7d32;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#256428;
}

.hero-image{
    background:white;
    border-radius:20px;
    height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:120px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

section{
    padding:90px 0;
}

h2{
    text-align:center;
    margin-bottom:18px;
    font-size:2.2rem;
}

.subtitle{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
    color:#64748b;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.card h3{
    margin-bottom:12px;
}

.pricing{
    background:#eef7ef;
}

.price-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.price-card{
    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-5px);
}

.price-card h3{
    margin-bottom:15px;
}

.price{
    font-size:2.2rem;
    color:#2e7d32;
    font-weight:700;
    margin:20px 0;
}

.price-card ul{
    list-style:none;
    color:#64748b;
}

.price-card li{
    margin:10px 0;
}

.contact{
    text-align:center;
}

.contact-box{
    max-width:650px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact p{
    margin:12px 0;
}

footer{
    background:#0f172a;
    color:white;
    padding:35px;
    text-align:center;
}

@media(max-width:900px){

.hero-content,
.about-grid,
.price-grid{
grid-template-columns:1fr;
}

.hero{
text-align:center;
padding-top:100px;
}

nav ul{
display:none;
}

.hero h1{
font-size:2.3rem;
}

.hero-image{
height:260px;
font-size:70px;
}

}