.faq-hero {
            position: relative;
            padding: 160px 0 100px;
            text-align: center;
            color: #fff;
            overflow: hidden;
            margin-top: 60px;
        }
        .faq-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45,80,22,0.94) 0%, rgba(107,142,35,0.88) 50%, rgba(26,58,10,0.94) 100%);
            z-index: 1;
        }
        .faq-hero-bg {
            position: absolute;
            inset: 0;
            background: url('../../images/brand/olive-hero.svg') center/cover no-repeat;
        }
        .faq-hero .container { position: relative; z-index: 2; }
        .faq-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            margin-bottom: 16px;
        }
        .faq-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .faq-section {
            padding: 80px 0 100px;
            background: linear-gradient(180deg, #f8f9f5 0%, #fff 100%);
        }

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

        .faq-category-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .faq-category-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            flex-shrink: 0;
        }

        .faq-category-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-color);
        }

        .faq-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.04);
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 22px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-color);
            text-align: left;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--secondary-color);
        }

        .faq-question .faq-toggle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f0f4e8;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .faq-question .faq-toggle i {
            font-size: 14px;
            color: var(--primary-color);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question {
            color: var(--primary-color);
        }

        .faq-item.active .faq-toggle {
            background: var(--primary-color);
        }

        .faq-item.active .faq-toggle i {
            color: #fff;
            transform: rotate(180deg);
        }

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

        .faq-answer-inner {
            padding: 0 28px 22px;
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-light);
        }

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

        /* CTA */
        .faq-cta {
            text-align: center;
            padding: 60px 0 0;
        }

        .faq-cta-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 24px;
            padding: 50px;
            color: #fff;
        }

        .faq-cta-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .faq-cta-card p {
            opacity: 0.9;
            margin-bottom: 24px;
            font-size: 1rem;
        }

        .faq-cta-card .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--primary-color);
            padding: 14px 32px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .faq-cta-card .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .faq-hero { padding: 140px 0 70px; }
            .faq-section { padding: 50px 0 70px; }
            .faq-question { padding: 18px 20px; font-size: 0.92rem; }
            .faq-answer-inner { padding: 0 20px 18px; }
            .faq-cta-card { padding: 35px 24px; }
        }