/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* FAQ Styles */
.faqs-container {
    display: flex;
    gap: 20px;
    min-height: 500px;
    padding: 20px;
    border-radius: 10px;
}

.faqs-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateX(5px);
}

.faq-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-title {
    color: #000;
    font-weight: 500;
    flex: 1;
}

.faq-arrow {
    color: #666;
    font-size: 18px;
    margin-left: 10px;
}

.faqs-content {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.faq-answer {
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-answer-title {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-answer-content {
    color: #555;
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .faqs-container {
        flex-direction: column;
    }
    
    .faqs-list {
        flex: 1;
    }
}