.hero{
    background:linear-gradient(
        135deg,
        #ff9800 0%,
        #ffad33 100%
    );

    padding-top:120px;
    padding-bottom:120px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-200px;
    right:-200px;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    color:#ffffff;
    font-weight:800;
    margin-bottom:30px;
}

.hero p{
    font-size:20px;
    color:#fff7ea;
    max-width:760px;
}

/* ========================= */
/* MAIN CONTENT */
/* ========================= */

.main-content{
    padding-top:80px;
    padding-bottom:80px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-bottom:60px;
}

.info-card{
    background:#ffffff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#111111;
}

.info-card p{
    color:#555555;
    font-size:16px;
}

/* ========================= */
/* ARTICLE */
/* ========================= */

.article{
    background:#ffffff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.article h2{
    font-size:42px;
    margin-bottom:30px;
    color:#111111;
}

.article h3{
    font-size:30px;
    margin-top:50px;
    margin-bottom:20px;
    color:#111111;
}

.article p{
    margin-bottom:22px;
    color:#444444;
    font-size:18px;
}

.article ul{
    padding-left:25px;
    margin-bottom:30px;
}

.article li{
    margin-bottom:12px;
    color:#444444;
}

/* ========================= */
/* IMAGE PLACEHOLDER */
/* ========================= */

.image-placeholder{
    width:100%;
    height:420px;
    background:#ececec;
    border-radius:24px;
    margin-top:40px;
    margin-bottom:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#888888;
    font-size:18px;
    font-weight:600;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta-box{
    margin-top:60px;
    background:#fff4df;
    border-radius:30px;
    padding:50px;
    text-align:center;
}

.cta-box h3{
    font-size:38px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 30px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#ff9800;
    color:#ffffff;
    padding:16px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:#ffffff;
    color:#111111;
    padding:16px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

