/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3, .faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a4b8c;
    font-weight: 600;
}

.faq-icon, .toggle-icon {
    color: #1a4b8c;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 1.5rem 2rem;
    visibility: visible;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3, .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        transition: max-height 0.5s ease, padding 0.3s ease;
    }
    
    .faq-answer.active {
        padding: 1.5rem 1.2rem 1.5rem 1.2rem;
        max-height: 1500px;
        visibility: visible;
        opacity: 1;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 0.5rem;
        margin-bottom: 0.5rem;
    }
} 