.faq-hero-modern {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.faq-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.highlight-text {
    color: #66B044;
}

.faq-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #525252;
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   FAQ CONTENT SECTION
   ============================================ */
.faq-content-section {
    padding: 100px 0;
    background: white;
}

.faq-container-modern {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 64px;
}

.faq-category h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #66B044;
}

.faq-item-modern {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: #66B044;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question-modern {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: white;
    transition: background 0.3s ease;
}

.faq-question-modern:hover {
    background: #fafafa;
}

.faq-question-modern h3 {
    font-size: 20px;
    margin: 0;
    color: #0a0a0a;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle-circle {
    width: 40px;
    height: 40px;
    background: #66B044;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.faq-item-modern.active .faq-toggle-circle {
    transform: rotate(45deg);
    background: #0a0a0a;
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 2000px;
}

.faq-answer-modern p,
.faq-answer-modern ul {
    padding: 0 32px 28px 32px;
    margin: 0;
    color: #525252;
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer-modern ul {
    padding-left: 56px;
    padding-top: 12px;
}

.faq-answer-modern li {
    margin-bottom: 10px;
}

/* ============================================
   FAQ CTA SECTION
   ============================================ */
.faq-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #66B044 0%, #15803d 100%);
}

.faq-cta-content {
    text-align: center;
}

.faq-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.faq-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-btn-primary,
.faq-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn-primary {
    background: white;
    color: #0a0a0a;
}

.faq-cta-btn-primary:hover {
    background: #fafafa;
    transform: translateX(4px);
}

.faq-cta-btn-secondary {
    background: #0a0a0a;
    color: white;
}

.faq-cta-btn-secondary:hover {
    background: #1a1a1a;
    transform: translateX(4px);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-cta-btn-primary:hover .btn-arrow,
.faq-cta-btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 48px;
    }

    .faq-hero-description {
        font-size: 17px;
    }

    .faq-category h2 {
        font-size: 28px;
    }

    .faq-question-modern {
        padding: 20px 24px;
    }

    .faq-question-modern h3 {
        font-size: 17px;
    }

    .faq-toggle-circle {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .faq-answer-modern p,
    .faq-answer-modern ul {
        padding: 0 24px 20px 24px;
    }

    .faq-cta-title {
        font-size: 36px;
    }

    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-cta-btn-primary,
    .faq-cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}