.faq-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .faq-subtitle {
        color: var(--text-gray);
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
        font-family: "PoppinsMedium";
    }

    .faq-main-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--gray);
        line-height: 1.1;
        margin-bottom: 30px;
        font-family: "PoppinsBold";
    }

    .faq-main-title::after {
        content: '.';
        color: var(--red);
        font-family: "PoppinsBold";
    }

    .faq-section {
        width: var(--rn-width1);
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 1.8fr;
        gap: 80px;
        align-items: start;
    }

    .faq-left {
        position: sticky;
        top: 60px;
    }

    .faq-left h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--gray);
        line-height: 1.2;
        margin-bottom: 24px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: "PoppinsBold";
    }

    .faq-description {
        color: var(--text-gray);
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: "PoppinsBold";
    }

    .faq-cta {
        display: inline-flex;
        align-items: center;
        background: var(--red);
        color: white;
        text-decoration: none;
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 12px;
        font-family: "PoppinsBold";
    }

    .faq-cta span {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: "PoppinsBold";
    }

    .faq-cta:hover {
        background: #c92b32;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(229, 55, 64, 0.3);
    }

    .faq-cta svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .faq-cta:hover svg {
        transform: translateX(6px);
    }

    .faq-items {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        opacity: 0;
        transform: translateY(30px);
        font-family: "PoppinsBold";
    }

    /* Active FAQ item with black background */
    .faq-item.active {
        background: #000000;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-3px);
    }

    .faq-item:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

    .faq-question {
        padding: 28px 32px;
        background-color: #f9f9f9;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 18px;
        font-weight: 600;
        color: var(--gray);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        font-family: "PoppinsBold";
    }

    /* Active question styling with white text on black background */
    .faq-item.active .faq-question {
        background-color: #000000;
        color: #ffffff;
    }

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

    /* Override hover for active items */
    .faq-item.active .faq-question:hover {
        color: #ffffff;
    }

    .faq-question span {
        flex: 1;
        padding-right: 20px;
        font-family: "PoppinsBold";
    }

    /* Updated toggle styles for better background color integration */
    .faq-toggle {
        width: 36px;
        height: 36px;
     
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
        background: #f9f9f9;
        position: relative;
    }

    /* SVG plus icon styling */
    .faq-toggle svg {
        fill: var(--gray);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Active state for toggle on black background */
    .faq-item.active .faq-toggle {
        background: #ffffff;
        border-color: #ffffff;
        transform: rotate(45deg);
    }

    .faq-item.active .faq-toggle svg {
        fill: #000000;
        transform: rotate(-45deg);
    }

    /* Hover effect for toggle */
    .faq-toggle:hover {
        background: #f0f0f0;
        border-color: var(--red);
    }

    .faq-toggle:hover svg {
        fill: var(--red);
    }

    .faq-item.active .faq-toggle:hover {
        background: #e0e0e0;
        border-color: #e0e0e0;
    }

    .faq-item.active .faq-toggle:hover svg {
        fill: #000000;
    }

    /* Legacy toggle icon styles (in case you're still using the old method) */
    .faq-toggle-icon {
        position: relative;
    }

    .faq-toggle-icon::before,
    .faq-toggle-icon::after {
        content: '';
        position: absolute;
        background: var(--gray);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-toggle-icon::before {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .faq-toggle-icon::after {
        width: 2px;
        height: 16px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .faq-item.active .faq-toggle-icon::before,
    .faq-item.active .faq-toggle-icon::after {
        background: white;
    }

    .faq-item.active .faq-toggle-icon::after {
        transform: translateX(-50%) rotate(90deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: #000000; /* Changed to solid black to match the item background */
    }

    .faq-answer-content {
        padding: 32px;
        color: white;
        font-size: 16px;
        line-height: 1.7;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }

    .faq-item.active .faq-answer-content {
        opacity: 0.8;
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .faq-section {
            gap: 60px;
        }
        
        .faq-main-title {
            font-size: 36px;
        }
        
        .faq-left h3 {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .faq-section {
            grid-template-columns: 1fr;
            gap: 40px;
            margin: 40px auto;
        }

        .faq-left {
            position: static;
            text-align: center;
        }

        .faq-left h3 {
            font-size: 24px;
        }

        .faq-main-title {
            font-size: 32px;
        }

        .faq-question {
            padding: 24px 28px;
            font-size: 16px;
        }

        .faq-answer-content {
            padding: 28px;
            font-size: 15px;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
        }
    }

    @media (max-width: 480px) {
        .faq-section {
            padding: 0 16px;
        }
        
        .faq-main-title {
            font-size: 28px;
        }
        
        .faq-left h3 {
            font-size: 22px;
        }
        
        .faq-cta {
            padding: 14px 28px;
            font-size: 14px;
        }
        
        .faq-question {
            padding: 20px 24px;
            font-size: 15px;
        }
        
        .faq-answer-content {
            padding: 24px;
            font-size: 14px;
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
        }

        .faq-toggle svg {
            width: 16px;
            height: 16px;
        }
    }

    /* Loading animations */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }