/* FAQ Section Styles - Compact Design from services.html */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq__question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq__question:hover {
    background: #f8f9fa;
}

.faq__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.faq__item.active .faq__answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq__answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq__container {
        padding: 0 16px;
    }
    
    .faq__question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq__answer {
        padding: 0 20px;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 20px 20px;
    }
    
    .faq__icon {
        width: 18px;
        height: 18px;
        margin-left: 12px;
    }
}