
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Jost-Book","Jost",Arial,sans-serif;
    background:#FAFAF8;
    color:#333;
    line-height:1.75;
    font-size:16px;
    -webkit-font-smoothing:antialiased;
}

a{
    text-decoration:none;
}

ul,ol{
    padding-left:22px;
}

.barweer-page{
    width:100%;
    overflow:hidden;
}

.container{
    width:1200px;
    max-width:92%;
    margin:auto;
}

/* ================= Hero ================= */

.hero{
    background:linear-gradient(
        180deg,
        #FFE6A6 0%,
        #FFF0CF 45%,
        #FFF8EC 75%,
        #FAFAF8 100%
    );
    padding:90px 20px 70px;
    text-align:center;
}

.hero .h1{
    font-size:52px;
    font-weight:700;
    color:#2F2F2F;
    margin-bottom:18px;
}

.hero p{
    max-width:760px;
    margin:auto;
    font-size:22px;
    color:#666;
}

/* ================= Sections ================= */

.section{
    padding:55px 0;
}

.section-title{
    text-align:center;
    color:#F39C12;
    font-size:38px;
    font-weight:700;
    margin-bottom:30px;
}

.intro{
    max-width:920px;
    margin:auto;
    text-align:center;
}

.intro p{
    font-size:20px;
    color:#555;
}

/* ================= Cards ================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
    margin-top:35px;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:36px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 38px rgba(0,0,0,.08);
}

.card .h3{
    color:#F39C12;
    font-size:28px;
    margin-bottom:18px;
    line-height:1.3;
}

.card p{
    font-size:20px;
    color:#555;
    line-height:1.8;
}

.card li{
    font-size:20px;
    color:#555;
    margin-bottom:14px;
    line-height:1.8;
}

/* ================= Steps ================= */

.steps{
    max-width:900px;
    margin:auto;
}

.step{
    display:flex;
    gap:22px;
    align-items:flex-start;
    margin-bottom:28px;
}

.number{
    width:52px;
    height:52px;
    background:#FFB52B;
    border-radius:50%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
    flex-shrink:0;
}

.step .h3{
    color:#F39C12;
    font-size:26px;
    margin-bottom:8px;
}

.step p{
    font-size:20px;
    color:#555;
}

/* ================= Note ================= */

.note{
    margin-top:35px;
    background:#FFF8EA;
    border-left:5px solid #F39C12;
    padding:24px;
    border-radius:12px;
    font-size:19px;
    color:#555;
}

/* ================= CTA ================= */

.cta{
    background:linear-gradient(
        180deg,
        #FFF9EC 0%,
        #FFEFC9 35%,
        #FFD870 70%,
        #F6A000 100%
    );
    text-align:center;
    padding:80px 20px;
}

.cta .h2{
    font-size:40px;
    color:#333;
    margin-bottom:18px;
}

.cta p{
    font-size:21px;
    color:#555;
    margin-bottom:35px;
}

.cta a{
    display:inline-block;
    background:#FF9800;
    color:#fff;
    padding:18px 44px;
    border-radius:40px;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

.cta a:hover{
    background:#EC8900;
    transform:translateY(-2px);
}

/* ================= Responsive ================= */

@media(max-width:768px){

.hero{
    padding:70px 20px 55px;
}

.hero .h1{
    font-size:36px;
}

.hero p{
    font-size:18px;
}

.section{
    padding:42px 0;
}

.section-title{
    font-size:30px;
}

.intro p{
    font-size:18px;
}

.grid{
    grid-template-columns:1fr;
}

.card{
    padding:28px;
}

.card .h3{
    font-size:24px;
}

.card p,
.card li{
    font-size:18px;
}

.step{
    flex-direction:column;
}

.step .h3{
    font-size:22px;
}

.step p{
    font-size:18px;
}

.cta .h2{
    font-size:30px;
}

.cta p{
    font-size:18px;
}

.cta a{
    font-size:18px;
}

}
