/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    padding: 8px;
}

.faq-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    flex-grow: 1;
}

.faq-toggle-icon {
    margin-left: 15px;
    color: #ff5e14;
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] .faq-toggle-icon i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-body.show {
    padding: 20px 25px 20px 80px;
    border-top: 1px solid #eee;
}

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

.faq-contact-info {
    font-size: 18px;
    color: #ff5e14;
    font-weight: 600;
}

.faq-contact-info i {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-header h3 {
        font-size: 16px;
    }
    
    .faq-body.show {
        padding: 15px 20px 15px 70px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .faq-header {
        padding: 15px;
    }
    
    .faq-header h3 {
        font-size: 15px;
    }
    
    .faq-body.show {
        padding: 15px 15px 15px 60px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
}
