/**
 * FAQ Page Sections Styles
 * 
 * @package WP Bootstrap Starter Child
 */

.faq-page-sections {
    margin-bottom: 3rem !important;
    padding: 20px;
    max-width: 1600px !important;
    margin: 0 auto;
}

.faq-page-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Section Header with Icon */
.faq-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-section-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-section-heading {
    margin: 0;
    font-size: 55px;
    font-weight: 600;
    color: #333;
}

/* FAQ Items */
.faq-items-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    padding-bottom: 2rem;
}

.faq-question {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-answer {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-page-sections {
        margin-top: 2rem;
    }
    
    .faq-page-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .faq-section-header {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-section-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-section-heading {
        font-size: 1.75rem;
    }
    
    .faq-question {
        font-size: 1.25rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .faq-items-wrapper {
        margin-top: 1.5rem;
    }
}
