.hero{
    background:linear-gradient(
        135deg,
        #ff9800,
        #ffb547
    );

    padding-top:120px;
    padding-bottom:120px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    top:-250px;
    right:-250px;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.hero h1{
    color:#ffffff;
    font-size:68px;
    line-height:1.1;
    margin-bottom:30px;
    font-weight:800;
}

.hero p{
    color:#fff6ea;
    font-size:21px;
    max-width:760px;
}

/* ========================================= */
/* MAIN CONTENT */
/* ========================================= */

.main-content{
    padding-top:80px;
    padding-bottom:80px;
}

/* ========================================= */
/* TOC */
/* ========================================= */

.toc{
    background:#ffffff;
    border-radius:30px;
    padding:40px;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.toc h3{
    font-size:30px;
    margin-bottom:25px;
}

.toc ul{
    list-style:none;
}

.toc li{
    margin-bottom:14px;
}

.toc a{
    text-decoration:none;
    color:#ff9800;
    font-weight:600;
    transition:0.3s;
}

.toc a:hover{
    padding-left:8px;
}

/* ========================================= */
/* ARTICLE */
/* ========================================= */

.article{
    background:#ffffff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.article h2{
    font-size:44px;
    margin-bottom:30px;
    color:#111111;
}

.article h3{
    font-size:32px;
    margin-top:60px;
    margin-bottom:24px;
    color:#111111;
}

.article p{
    margin-bottom:24px;
    font-size:18px;
    color:#444444;
}

.article ul{
    padding-left:22px;
    margin-bottom:30px;
}

.article li{
    margin-bottom:12px;
    color:#444444;
}

/* ========================================= */
/* IMAGE PLACEHOLDER */
/* ========================================= */

.image-placeholder{
    width:100%;
    height:420px;
    border-radius:24px;
    background:#ececec;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#888888;
    font-size:18px;
    font-weight:600;
    margin-top:40px;
    margin-bottom:40px;
}

/* ========================================= */
/* TABLE */
/* ========================================= */

.table-wrapper{
    overflow-x:auto;
    margin-top:40px;
    margin-bottom:40px;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#ffffff;
}

table th{
    background:#ff9800;
    color:#ffffff;
    padding:18px;
    text-align:left;
}

table td{
    padding:18px;
    border-bottom:1px solid #ececec;
    color:#444444;
}

/* ========================================= */
/* VIDEO */
/* ========================================= */

.video-placeholder{
    width:100%;
    height:500px;
    border-radius:24px;
    background:#1f1f1f;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#ffffff;
    margin-top:40px;
    margin-bottom:40px;
    font-size:22px;
    font-weight:700;
}

/* ========================================= */
/* CTA */
/* ========================================= */

.cta-box{
    margin-top:60px;
    background:#fff3dd;
    padding:50px;
    border-radius:30px;
    text-align:center;
}

.cta-box h3{
    font-size:38px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:720px;
    margin:0 auto 30px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#ff9800;
    color:#ffffff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:#ffffff;
    color:#111111;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
}

/* ========================================= */
/* FAQ */
/* ========================================= */

.faq{
    margin-top:80px;
}

.faq-item{
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.faq-item h4{
    font-size:24px;
    margin-bottom:16px;
}