    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .max-width {
        max-width: 1500px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        padding: 0rem 1rem;
    }


    /* all-FAQ Container  */
    .all-faq-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* all-FAQ Item  */
    .all-faq-item {
        background: #0a0a0a;
        border: 1px solid #1a1a1a;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .all-faq-item:hover {
        border-color: #ff8a00;
        background: #0c0c0c;
        transform: translateY(-2px);
        box-shadow: 0 20px 30px -20px rgba(255, 138, 0, 0.3);
    }

    .all-faq-item:focus-within {
        border-color: #ff8a00;
        box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.2);
    }

    /* Question Button */
    .all-faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 24px 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        cursor: pointer;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 500;
        text-align: left;
        transition: all 0.2s ease;
        position: relative;
        line-height: 1.5;
    }

    /* Large touch target for mobile */
    @media (max-width: 768px) {
        .all-faq-question {
            padding: 20px 16px;
            min-height: 70px;
        }
    }

    .all-faqs-question-text {
        flex: 1;
        padding-right: 10px;
    }

    /* Icon container */
    .all-faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 50%;
        background: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #ff8a00;
        font-size: 14px;
        border: 1px solid #2a2a2a;
    }

    .all-faq-item:hover .all-faq-icon {
        background: #ff8a00;
        color: #000000;
        border-color: #ff8a00;
        transform: scale(1.05);
    }

    /* Answer section */
    .all-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: #050505;
    }

    .all-faqs-answer-content {
        padding: 10px 28px 24px 28px;
        color: #cccccc;
        line-height: 1.7;
        font-size: 1rem;
    }


    .all-faq-item.active {
        border-color: #ff8a00;
        background: #0c0c0c;
    }

    .all-faq-item.active .all-faq-icon {
        background: #ff8a00;
        color: #000000;
        border-color: #ff8a00;
        transform: rotate(45deg);
    }

    .all-faq-item.active .all-faq-question {
        color: #ff8a00;
        font-weight: 600;
    }

    .all-faq-item.active .all-faq-answer {
        max-height: 300px;
    }

    .all-faq-item.active .all-faqs-answer-content {
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .all-faq-subtitle {
            font-size: 1rem;
            padding: 0 16px;
        }

        .all-faqs-question-text {
            font-size: 1rem;
        }

        .all-faqs-answer-content {
            padding: 0 16px 20px 16px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.75rem;
        }

        .all-faq-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
        }
    }

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {

        .all-faq-item,
        .all-faq-icon,
        .all-faq-answer {
            transition: none;
        }

        .all-faq-item.active .all-faqs-answer-content {
            animation: none;
        }
    }