    /* FAQ Section */
    .faq-section {
         background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(71, 60, 175, 0.5) 0%, rgba(20, 20, 40, 0.7) 50%, rgba(0, 0, 0, 1) 100%);
         padding: 100px 0;
    }

  

    .faq-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    /* Left Image */
.faq-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 4 / 3;   /* keeps it proportional */
    border-radius: 20px;
}

    /* FAQ Items */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-item {
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.2);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(139, 92, 246, 0.4);
        box-shadow: 0 5px 20px rgba(139, 92, 246, 0.15);
    }

    .faq-question {
        width: 100%;
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
        font-weight: 600;
        background: none;
        border: none;
        text-align: left;
    }

    .faq-question:hover {
        color: #A855F7;
    }

    .arrow {
        color: #8B5CF6;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .faq-question.active .arrow {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        background: transparent;
    }

    .faq-answer p {
        padding: 0 25px 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .faq-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .faq-image {
            height: 300px;
        }

        .faq-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }
    }