/* ==========================================================
   HERO
========================================================== */

.child-hero{
    padding:7rem 0;
    text-align:center;
    color:#ffffff;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("/static/images/hero/hero2.jpg");
    background-size:cover;
    background-position:center;
}

.child-hero .container{
    max-width:850px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:.75rem 1.5rem;
    margin-bottom:1.5rem;
    border-radius:50px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(10px);
    color:#FFD166;
    font-weight:700;
}

.child-hero h1{
    color:#ffffff;
    font-size:clamp(2.8rem,6vw,4.5rem);
    margin-bottom:1.5rem;
    text-shadow:0 5px 20px rgba(0,0,0,.35);
}

.child-hero p{
    max-width:760px;
    margin:auto;
    color:#FFF8E8;
    line-height:1.9;
    font-size:1.08rem;
}

/* ==========================================================
   GENERAL
========================================================== */

.section{
    padding:5rem 0;
}

.child-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:2.5rem;
    align-items:start;
}

/* ==========================================================
   SIDEBAR
========================================================== */

.child-sidebar{
    position:sticky;
    top:120px;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:2rem;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.child-sidebar h3{
    color:var(--primary);
    margin-bottom:1.5rem;
}

.child-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.child-sidebar li{
    margin-bottom:.8rem;
}

.child-sidebar a{
    display:block;
    padding:.75rem 1rem;
    text-decoration:none;
    color:var(--text);
    border-radius:10px;
    transition:.3s;
}

.child-sidebar a:hover{
    background:rgba(255,165,0,.08);
    color:var(--primary);
    padding-left:1.25rem;
}

/* ==========================================================
   CONTENT
========================================================== */

.child-content{
    display:flex;
    flex-direction:column;
    gap:2rem;
}

.child-content section{
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:2.25rem;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.child-content h2{
    color:var(--primary);
    margin-bottom:1rem;
    padding-bottom:.8rem;
    border-bottom:2px solid rgba(0,0,0,.05);
}

.child-content p{
    line-height:1.9;
    color:var(--text);
    margin-bottom:1rem;
}

.child-content ul{
    margin-top:1rem;
    padding-left:1.5rem;
}

.child-content li{
    margin-bottom:.85rem;
    line-height:1.8;
    color:var(--text);
}

/* ==========================================================
   HIGHLIGHT BOX
========================================================== */

.highlight-box{
    margin-top:1.75rem;
    padding:1.75rem;
    background:rgba(255,165,0,.08);
    border-left:5px solid var(--primary);
    border-radius:14px;
}

.highlight-box strong{
    display:block;
    margin-bottom:1rem;
    color:var(--primary);
    font-size:1.05rem;
}

.highlight-box ul{
    margin:0;
    padding-left:1.3rem;
}

.highlight-box li{
    margin-bottom:.7rem;
}

/* ==========================================================
   CONTACT CARD
========================================================== */

.contact-card{
    margin-top:1.5rem;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:1.5rem;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:14px;
    padding:1.75rem;
}

.contact-card p{
    margin:0;
    line-height:1.8;
}

.contact-card strong{
    color:var(--primary);
}

/* ==========================================================
   CTA
========================================================== */

.child-cta{
    padding:5rem 0;
    text-align:center;
    background:#111827;
}

.child-cta h2{
    color:#ffffff;
    margin-bottom:1rem;
}

.child-cta p{
    max-width:700px;
    margin:0 auto 2rem;
    color:rgba(255,255,255,.85);
    line-height:1.9;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:1rem 2.5rem;
    background:var(--primary);
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    border-radius:12px;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    filter:brightness(.95);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px){

    .child-layout{
        grid-template-columns:1fr;
    }

    .child-sidebar{
        position:relative;
        top:0;
    }

}

@media (max-width:768px){

    .child-hero{
        padding:5rem 0;
    }

    .child-sidebar,
    .child-content section{
        padding:1.6rem;
    }

}

@media (max-width:576px){

    .section,
    .child-cta{
        padding:4rem 0;
    }

    .child-content h2{
        font-size:1.35rem;
    }

    .contact-card{
        grid-template-columns:1fr;
    }

}