/* FAQ Styles */
.faq-section {
    background: var(--smoke-color2);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--gap-xl);
    align-items: start;
}

.faq-content {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: var(--gap-xl);
}

.faq-content .section-header {
    text-align: left;

    h2 {
        max-width: unset;
    }
}

.faq-list {
    margin-top: var(--gap-lg);
}

.faq-item {
    border-bottom: 1px solid var(--smoke-color2);
    margin-bottom: var(--gap-md);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: var(--gap-md) 0;
    cursor: pointer;
    gap: var(--gap-sm);
}

.faq-number {
    font-weight: 600;
    color: var(--theme-color);
    min-width: 20px;
}

.faq-text {
    flex: 1;
    font-weight: 600;
    color: var(--title-color);
    font-size: var(--fs-xs);
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--smoke-color2);
    transition: var(--transition);
}

.faq-toggle svg {
    fill: var(--body-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--theme-color);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle svg {
    fill: var(--white-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 var(--gap-md) 32px;
}

.faq-sidebar {
    position: sticky;
    top: 5rem;
}

.faq-description {
    background: var(--white-color);
    padding: var(--gap-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--gap-md);
}

.faq-description p {
    margin: 0;
    line-height: 1.7;
}

.faq-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-image img:hover {
    transform: unset;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .faq-content {
        padding: var(--gap-lg);
    }

    .faq-item.active .faq-answer {
        padding: 0 0 var(--gap-md) 0;
    }
}

@media (max-width: 480px) {
    .faq-content {
        padding: var(--gap-lg) var(--gap-sm) var(--gap-lg);
    }

    .faq-question {
        padding: var(--gap-sm) 0;
    }

    .faq-text {
        font-size: var(--fs-xs);
    }

    .faq-toggle {
        width: 25px;
        height: 25px;
    }
}