/* =========================
   BASE RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter, Arial, sans-serif;
    background:#07110C;
    color:#fff;
}

/* =========================
   CONTAINER
========================= */
.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

/* =========================
   HERO SECTION (FAQ TOP)
========================= */
.about-hero.enhanced-hero{
    position:relative;
    padding:90px 0 60px;
    text-align:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top, rgba(124,179,66,0.15), transparent 60%);
    z-index:0;
}

.hero-glow{
    position:absolute;
    width:300px;
    height:300px;
    background:#7CB342;
    filter:blur(120px);
    opacity:0.15;
    top:-50px;
    left:50%;
    transform:translateX(-50%);
    z-index:0;
}

.about-hero-content{
    position:relative;
    z-index:2;
}

/* badge */
.hero-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    letter-spacing:1px;
    color:#7CB342;
    border:1px solid rgba(124,179,66,0.4);
    background:rgba(124,179,66,0.08);
    margin-bottom:15px;
}

/* title */
.hero-title h1{
    font-size:44px;
    font-family:Oswald, sans-serif;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-title span{
    color:#7CB342;
}

/* description */
.hero-description p{
    max-width:650px;
    margin:0 auto 25px;
    color:#b7c7bd;
    line-height:1.6;
    font-size:15px;
}

/* buttons */
.hero-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.hero-btn{
    padding:12px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    font-size:13px;
    transition:0.3s ease;
}

.hero-btn.primary{
    background:#7CB342;
    color:#000;
}

.hero-btn.primary:hover{
    background:#6aa736;
}

.hero-btn.secondary{
    border:1px solid #7CB342;
    color:#7CB342;
}

.hero-btn.secondary:hover{
    background:#7CB342;
    color:#000;
}

/* =========================
   FAQ HEADER BELOW HERO
========================= */
.badge{
    display:inline-block;
    margin-top:40px;
    padding:6px 14px;
    font-size:12px;
    color:#7CB342;
    border:1px solid rgba(124,179,66,0.4);
    background:rgba(124,179,66,0.08);
    border-radius:20px;
    letter-spacing:1px;
}

h1{
    font-size:36px;
    margin:15px 0 10px;
    font-family:Oswald, sans-serif;
}

p{
    color:#b7c7bd;
    max-width:650px;
    margin-bottom:25px;
    line-height:1.6;
}

/* =========================
   FAQ BOX
========================= */
.faq-box{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

/* =========================
   FAQ ITEM
========================= */
.faq-item{
    background:linear-gradient(145deg,#0b1a12,#08140e);
    border:1px solid #1c2f22;
    border-radius:12px;
    overflow:hidden;
    transition:0.3s ease;
}

/* hover effect */
.faq-item:hover{
    border-color:#2e4a36;
    transform:translateY(-2px);
}

/* QUESTION */
.faq-question{
    padding:18px 20px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
}

.faq-question:hover{
    color:#7CB342;
}

/* ICON */
.icon{
    transition:0.3s ease;
    color:#7CB342;
}

/* rotate icon when active */
.faq-item.active .icon{
    transform:rotate(180deg);
}

/* =========================
   ANSWER
========================= */
.faq-answer{
    max-height:0;
    overflow:hidden;
    opacity:0;
    padding:0 20px;
    color:#cfd8d3;
    line-height:1.6;
    font-size:14px;
    transition:0.4s ease;
}

/* active state */
.faq-item.active .faq-answer{
    max-height:400px;
    opacity:1;
    padding:0 20px 18px;
}

/* =========================
   ACTIVE CARD STYLE
========================= */
.faq-item.active{
    border-color:#7CB342;
    box-shadow:0 0 20px rgba(124,179,66,0.15);
}

/* =========================
   MOBILE
========================= */
@media(max-width:600px){
    .hero-title h1{
        font-size:30px;
    }

    h1{
        font-size:26px;
    }

    .faq-question{
        font-size:14px;
    }
}