body{
    margin:0;
    font-family:Arial, sans-serif;
    color:#111;
    background:#f6f1ea;
}

.navbar{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.navbar-brand img{
    height:70px;
    width:auto;
}

.hero{
    padding:100px 0 50px;
}

.hero h1,
.hero-title{
    font-size:clamp(44px,7vw,88px);
    font-weight:800;
    line-height:.95;
    letter-spacing:-3px;
}

.hero-text,
.about-text{
    font-size:20px;
    line-height:1.8;
    color:#555;
}

.hero-visual{
    min-height:420px;
    border-radius:36px;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(135deg,rgba(0,0,0,.15),rgba(255,255,255,.1)),
        linear-gradient(135deg,#111,#b89b72,#f4e8d8);
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.hero-label{
    position:absolute;
    left:32px;
    bottom:32px;
    background:rgba(255,255,255,.85);
    padding:18px 24px;
    border-radius:999px;
    font-weight:700;
}

.section{
    padding:70px 0;
}

.section-title{
    font-size:clamp(36px,5vw,64px);
    font-weight:800;
    letter-spacing:-2px;
}

.about-box,
.contact-box,
.service-card,
.value-card{
    background:#fff;
    border-radius:28px;
    padding:40px;
    box-shadow:0 18px 50px rgba(0,0,0,.07);
}

.service-card,
.value-card{
    height:100%;
}

.service-number{
    color:#b89b72;
    font-weight:700;
    margin-bottom:25px;
}

.cta{
    background:#111;
    color:#fff;
    border-radius:40px;
    padding:70px 35px;
}

.form-control{
    padding:15px;
    border-radius:14px;
}

footer{
    padding:40px 0;
    color:#777;
    text-align:center;
}

@media(max-width:768px){
    .hero{
        padding:90px 0 40px;
    }

    .hero-visual{
        min-height:320px;
        margin-top:30px;
    }

    .section{
        padding:55px 0;
    }

    .about-box,
    .contact-box,
    .service-card,
    .value-card{
        padding:28px;
    }
	
   .feature-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
    }

    .feature-card h3{
    margin-bottom:15px;
    font-size:24px;
    }

    .feature-card p{
    margin:0;
    line-height:1.8;
    }
}