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

body{
    font-family:Arial, sans-serif;
    background:#eef6ef;
    color:#222;
    line-height:1.6;
}

.hero{
    min-height:100vh;
    background:linear-gradient(135deg,#a8d8ea,#b7e4c7,#c8b6a6);
    padding:20px;
    display:flex;
    flex-direction:column;
}

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

nav h1{
    font-size:32px;
    color:#234;
}

.nav-buttons a{
    text-decoration:none;
    margin-left:10px;
    background:white;
    padding:10px 16px;
    border-radius:8px;
    color:#234;
    font-weight:bold;
}

.hero-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content h2{
    font-size:60px;
    max-width:900px;
}

.hero-content p{
    max-width:700px;
    margin-top:20px;
    font-size:22px;
}

.hero-buttons{
    margin-top:30px;
}

.hero-buttons a{
    text-decoration:none;
    padding:16px 28px;
    border-radius:10px;
    margin:10px;
    display:inline-block;
    font-weight:bold;
}

.primary{
    background:#4caf50;
    color:white;
}

.secondary{
    background:#5dade2;
    color:white;
}

.services, .reviews, .contact{
    padding:80px 20px;
    max-width:1200px;
    margin:auto;
}

.services h2,
.reviews h2,
.contact h2{
    text-align:center;
    margin-bottom:40px;
    font-size:40px;
}

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

.card{
    background:white;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.review-box{
    background:white;
    padding:40px;
    border-radius:16px;
    text-align:center;
    font-size:22px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.review-box p{
    margin:12px 0;
}

form{
    background:white;
    padding:40px;
    border-radius:16px;
    max-width:700px;
    margin:auto;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

input, textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border-radius:10px;
    border:1px solid #ccc;
    font-size:16px;
}

textarea{
    min-height:140px;
}

button{
    background:#4caf50;
    color:white;
    border:none;
    padding:16px 24px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

footer{
    background:#6d4c41;
    color:white;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){
    .hero-content h2{
        font-size:40px;
    }

    nav{
        gap:15px;
    }
}
