 .faq {
        padding: 70px 20px;
        background: #ffffff;
    }    .faq .faq-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .faq .faq-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .faq .faq-subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .faq .faq-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .faq .faq-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 60px;
        align-items: flex-start;
    }

    .faq .faq-questions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: sticky;
        top: 100px;
    }

    .faq .faq-nav-item {
        background: white;
        padding: 25px 20px;
        border-radius: 15px;
        border: 2px solid #f1f3f4;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .faq .faq-nav-item:hover {
        border-color: #28a745;
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.1);
    }

    .faq .faq-nav-item.active {
        background: linear-gradient(135deg, #28a745, #20c997);
        border-color: #28a745;
        color: white;
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
    }

    .faq .faq-number {
        font-size: 1.1rem;
        font-weight: 700;
        color: #28a745;
        min-width: 30px;
        transition: color 0.3s ease;
    }

    .faq .faq-nav-item.active .faq-number {
        color: white;
    }

    .faq .faq-nav-item h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #212529;
        margin: 0;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    .faq .faq-nav-item.active h3 {
        color: white;
    }    .faq .faq-answers {
        position: relative;
    }

    .faq .faq-answer-panel {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f3f4;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .faq .faq-answer-panel.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .faq .faq-answer-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .faq .faq-answer-text {
        font-size: 1.1rem;
        color: #495057;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .faq .faq-highlights {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .faq .highlight-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #f8f9fa;
        padding: 12px 18px;
        border-radius: 25px;
        border: 1px solid #e9ecef;
    }

    .faq .highlight-item i {
        color: #28a745;
        font-size: 1rem;
    }

    .faq .highlight-item span {
        font-size: 0.95rem;
        color: #495057;
        font-weight: 500;
    }    @media (max-width: 768px) {
        .faq {
            padding: 80px 20px;
        }

        .faq .faq-title {
            font-size: 2rem;
        }

        .faq .faq-subtitle {
            font-size: 1.1rem;
        }

        .faq .faq-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .faq .faq-questions {
            position: relative;
            top: auto;
        }        .faq .faq-answers {
            min-height: auto;
        }

        .faq .faq-answer-panel {
            padding: 30px 25px;
            position: relative;
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .faq .faq-answer-panel:not(.active) {
            display: none;
        }        .faq .faq-nav-item {
            padding: 20px 18px;
        }

        .faq .faq-nav-item h3 {
            font-size: 1rem;
        }

        .faq .faq-answer-title {
            font-size: 1.3rem;
        }

        .faq .faq-answer-text {
            font-size: 1rem;
        }

        .faq .highlight-item {
            padding: 10px 15px;
        }
    }

    @media (max-width: 480px) {
        .faq .faq-nav-item {
            padding: 18px 15px;
        }

        .faq .faq-answer-panel {
            padding: 25px 20px;
        }

        .faq .highlight-item {
            font-size: 0.9rem;
        }
    }