.acyve-faq-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .acyve-faq-header {
        background: linear-gradient(135deg, rgba(123, 104, 238, 0.2), rgba(0, 191, 255, 0.2), rgba(255, 105, 180, 0.2), rgba(128, 0, 128, 0.2));
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 15px;
        text-align: center;
        backdrop-filter: blur(10px);
        border: 2px solid #333;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .acyve-faq-header h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        background: linear-gradient(to right, #7B68EE, #00BFFF, #FF69B4, #800080);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 300% 300%;
        animation: acyve-gradient-shift 8s ease infinite;
    }

    .acyve-faq-header p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin: 1rem 0 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .acyve-faq-header a {
        color: #00BFFF;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
    }

    .acyve-faq-header a:hover {
        color: #FF69B4;
    }

    .acyve-faq-header a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, #00BFFF, #FF69B4);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .acyve-faq-header a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .acyve-faq-item {
        margin-bottom: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .acyve-faq-question {
        background: linear-gradient(135deg, rgba(123, 104, 238, 0.2), rgba(0, 191, 255, 0.2), rgba(255, 105, 180, 0.2), rgba(128, 0, 128, 0.2));
        padding: 1.2rem 1.5rem;
        color: #1f1f1f;
        font-size: clamp(1rem, 2vw, 1.1rem);
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        border: 1px solid #333;
    }

    .acyve-faq-question::after {
        content: '+';
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .acyve-faq-question.active {
        color: #00BFFF;
    }

    .acyve-faq-question.active::after {
        transform: rotate(45deg);
        color: #FF69B4;
    }

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

    .acyve-faq-answer.open {
        max-height: 500px;
        padding: 1.5rem;
    }

    .acyve-faq-answer p {
        margin: 0;
        color: #333;
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
    }

    @keyframes acyve-gradient-shift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .acyve-faq-header {
            padding: 1.5rem;
        }
        
        .acyve-faq-question {
            padding: 1rem;
        }
        
        .acyve-faq-answer.open {
            padding: 1rem;
        }
    }

    @media (max-width: 480px) {
        .acyve-faq-container {
            padding: 1rem 0.5rem;
        }
        
        .acyve-faq-header {
            padding: 1rem;
        }
        
        .acyve-faq-question::after {
            font-size: 1.2rem;
        }
    }