*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 7%;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.logo img{
    height: 140px;
    width:auto;
}

.nav-links{
    display:flex;
    gap: 25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

.nav-links a:hover{
    color:#D4AF37;
}

.hero{
    min-height:60vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 10%;
}

.badge{
    color:#D4AF37;
    font-weight:600;
}

.hero h1{
    font-size:4rem;
    margin:10px 0;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.hero-buttons{
    margin-top:30px;
}

.btn{
    background:#D4AF37;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:8px;
}

.btn-outline{
    border:2px solid #D4AF37;
    color:#D4AF37;
    text-decoration:none;
    padding:12px 30px;
    border-radius:8px;
    margin-left:10px;
}

section{
    padding:80px 10%;
}

section h2{
    text-align:center;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.features{
    display:grid;
    gap:15px;
    max-width:600px;
    margin:auto;
}

.cta{
    text-align:center;
    background:#faf8f0;
}

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

button{
    width:100%;
    padding:15px;
    background:#D4AF37;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:40px;
}

footer img{
    height:100px;
    margin-bottom:15px;
}

footer p{
    margin:8px 0;
}

footer h4{
    color:#D4AF37;
    margin-top:15px;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.5rem;
    }

}