/* FAQ Banner Specifics */
.faq-banner-bg {
    background-image: url('assets/images/FAQ.webp');
}

.faq-banner-content {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 100px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--color-dark);
}

.faq-question:hover {
    color: #c4704f;
}

.faq-question h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    color: inherit;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #c4704f;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-answer p {
    margin: 0;
    padding-bottom: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-container h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
        padding-right: 20px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-container h2 {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 18px 0;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding-bottom: 18px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
    }
}