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

body{
    font-family:Inter,sans-serif;
    background:#fff;
    color:#111;
}

a{text-decoration:none;color:inherit;}



.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 8%;
    border-bottom:1px solid #ececec;
    background:white;
    position:sticky;
    top:0;
}

.logo{
    font-size:1.3rem;
    font-weight:700;
}

.logo span{
    color:#999;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:2rem;
}

.nav-btn{
    background:#111;
    color:#fff;
    padding:.9rem 1.5rem;
    border-radius:8px;
}

.hero{
    text-align:center;
    max-width:700px;
    margin:auto;
    padding:100px 20px 70px;
}

.eyebrow{
    color:#888;
    letter-spacing:2px;
    margin-bottom:12px;
}

.hero h1{
    font-size:3rem;
    font-weight:500;
    margin-bottom:20px;
}

.subtitle{
    color:#666;
}

.faq{
    width:min(850px,90%);
    margin:auto;
    padding-bottom:100px;
}

.faq-item{
    border-bottom:1px solid #e7e7e7;
}

.faq-question{
    width:100%;
    padding:24px 0;
    border:none;
    background:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:1.05rem;
    font-weight:600;
    cursor:pointer;
}

.faq-question span{
    font-size:1.5rem;
    color:#888;
    transition:.3s;
}

.faq-answer{
    display:none;
    padding-bottom:24px;
}

.faq-answer p{
    color:#666;
    line-height:1.7;
}

footer{
    border-top:1px solid #ececec;
    padding:24px 8%;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-links{
    display:flex;
    gap:24px;
}

.footer-links a{
    color:#777;
}

.footer-links a:hover{
    color:#111;
}

.copyright{
    margin-top:20px;
    color:#999;
    font-size:.85rem;
}

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .footer-content{
        flex-direction:column;
        gap:20px;
    }

}

.contact{

    width:min(700px,90%);
    margin:0 auto 100px;

}

form{

    background:#f6f6f6;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:40px;

}

.row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

.input-group{

    display:flex;
    flex-direction:column;
    margin-bottom:22px;

}

label{

    margin-bottom:8px;
    font-size:.9rem;
    font-weight:500;

}

input,
select,
textarea{

    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-family:inherit;
    font-size:.95rem;
    background:white;
    transition:.2s;

}

input:focus,
select:focus,
textarea:focus{

    outline:none;
    border-color:#111;

}

textarea{

    resize:vertical;

}

.submit-btn{

    width:100%;
    padding:16px;
    border:none;
    border-radius:8px;
    background:#111;
    color:white;
    cursor:pointer;
    font-size:1rem;
    transition:.2s;

}

.submit-btn:hover{

    background:#000;

}

@media(max-width:800px){

    .row{

        grid-template-columns:1fr;

    }

}
