/* FAQ Section */
.faq-section {
    background: #000;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-left {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-left-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
}

.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-container {
    width: 100%;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Search Box */
.faq-search {
    position: relative;
    margin-bottom: 30px;
}

.faq-search input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: rgba(25, 25, 25, 0.95);
    border: 1px solid rgba(138, 87, 255, 0.2);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.faq-search input::placeholder {
    color: #666;
}

.faq-search input:focus {
    border-color: rgba(138, 87, 255, 0.6);
    background: rgba(30, 30, 30, 1);
    box-shadow: 0 0 0 3px rgba(138, 87, 255, 0.1);
}

.faq-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.6;
    pointer-events: none;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ Item */
.faq-item {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(138, 87, 255, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(138, 87, 255, 0.4);
    background: rgba(25, 25, 25, 0.9);
    transform: translateY(-2px);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

/* FAQ Toggle Button */
.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 87, 255, 0.2);
    border-radius: 8px;
    color: #8A57FF;
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-toggle {
    background: rgba(138, 87, 255, 0.3);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 22px 24px;
    margin: 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

/* Active State */
.faq-item.active {
    background: rgba(25, 25, 25, 1);
    border-color: rgba(138, 87, 255, 0.5);
}

.faq-item.active .faq-toggle {
    background: rgba(138, 87, 255, 0.35);
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-section {
        gap: 40px;
        padding: 60px 20px;
    }
    
    .faq-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        flex-direction: column;
        padding: 50px 16px;
        gap: 30px;
    }

    .faq-left {
        flex: none;
        width: 100%;
    }
    
    .faq-left-img {
        max-width: 350px;
    }

    .faq-right {
        width: 100%;
    }

    .faq-header h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .faq-search input {
        padding: 14px 45px 14px 18px;
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .faq-answer p {
        padding: 0 20px 18px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .faq-header h1 {
        font-size: 24px;
    }
    
    .faq-question h3 {
        font-size: 14px;
    }
}