:root{
    --primary:#0F172A;
    --accent:#F59E0B;
    --text:#334155;
}

body{
    font-family: system-ui,sans-serif;
    color:var(--text);
}

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:#f8fafc;
}

.section-title{
    font-weight:700;
    margin-bottom:1rem;
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:16px;
    background:#fff7e6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.accordion-button{
    background:#fff7e6;
    border-left:4px solid #fff7e6;
}

.accordion-button:hover{
    background:#fff7e6;
    border-left:4px solid #F59E0B;
}

.accordion-button:not(.collapsed){
    background:#fff7e6;
    border-left:4px solid #F59E0B;
    color:#000;
}