:root{
    --bg:#EAE6E5;
    --green:#AEAB3F;
    --red:#E7392E;
    --brown:#96661C;
    --text:#2C0700;
    --white:#ffffff;
    --shadow:0 12px 35px rgba(44,7,0,.08);
    --radius:24px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Poppins",sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.8;
}

.container{
    width:min(1100px,92%);
    margin:auto;
}

section{
    margin:130px 0;
}

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

img{
    max-width:100%;
    display:block;
}

header{
    background:linear-gradient(135deg,#F8F5F4 0%,#EAE6E5 100%);
    padding:80px 0 70px;
    border-bottom:4px solid var(--green);
}

.header{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:45px;

    flex-wrap:wrap;

}

.eyebrow{
    color:var(--green);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.9rem;
    margin-bottom:12px;
    display:block;
}

.logo{
    width:210px;
    transition:.3s;
}

.logo:hover{

    transform:scale(1.03);

}

.header-text{

    max-width:600px;

}

.header-text h1{

    font-size:3rem;

    line-height:1.15;

    margin-bottom:15px;

    color:var(--text);

}

.subtitle{

    font-size:1.3rem;

    color:var(--brown);

    font-weight:500;

}
.section-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:80px;
    margin-bottom:35px;
}

.section-icon{

    width:65px;

}

.downloads{
    background:#F7F5F4;
    border-left:6px solid #AEAB3F;
    padding:25px;
    margin-bottom:40px;
    border-radius:12px;
}

.downloads h2{
    margin-top:0;
}

.download-button{
    display:block;
    margin-top:15px;
    padding:14px 18px;
    background:#AEAB3F;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.2s;
}

.download-button:hover{
    background:#96661C;
}

h2{

    font-size:2.2rem;

    color:var(--brown);

    position:relative;

}

h2::after{

    content:"";

    width:90px;

    height:4px;

    background:var(--green);

    display:block;

    margin:14px auto 0;

    border-radius:50px;

}

.card{

    background:white;

    border-radius:var(--radius);

    padding:40px;

    box-shadow:var(--shadow);

}

.card p{

    margin-bottom:18px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.feature{
    background:white;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:all .3s ease;
    border:1px solid rgba(0,0,0,.04);
}

.feature:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.icon{

    font-size:3rem;

    margin-bottom:15px;

}

.feature h3{

    color:var(--brown);

    margin-bottom:12px;

}

.button{
    display:inline-block;
    margin-top:20px;
    padding:15px 34px;
    border-radius:999px;
    background:var(--red);
    color:white;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 20px rgba(231,57,46,.25);
}

.button:hover{
    transform:translateY(-3px);
    background:#d92d24;
    box-shadow:0 14px 30px rgba(231,57,46,.35);
}
.cta{

    background:var(--green);

    color:white;

    padding:60px;

    border-radius:30px;

    text-align:center;

}

.cta h2{

    color:white;

}

.cta h2::after{

    background:white;

}

.cta p{

    max-width:700px;

    margin:25px auto;

}

.contact{
    text-align:center;
}

.contact-heading{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.contact-heading h2{
    margin:0;
}

.contact-heading h2::after{
    margin:12px auto 0;
}

.contact-icon{
    width:70px;
    height:auto;
}

.mail{
    display:inline-block;
    margin-top:15px;
    color:var(--red);
    font-size:1.2rem;
    font-weight:600;
}

footer{

    margin-top:100px;

    background:var(--brown);

    color:white;

}

.footer-content{

    padding:40px 0;

    text-align:center;

}

footer nav{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:20px;

}

footer nav a{

    transition:.2s;

}

footer nav a:hover{

    opacity:.7;

}

@media (max-width:768px){

.header{

    flex-direction:column;

    text-align:center;

}

.logo{

    width:140px;

}

.header-text h1{

    font-size:2.2rem;

}

.subtitle{

    font-size:1.1rem;

}

section{

    margin:70px 0;

}

.card{
    background:white;
    border-radius:28px;
    padding:45px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

    .contact-icon{
    width:55px;
}
.cta{

    padding:35px 25px;

}

}
