/* FAQ Section Styles */

.faq-section {
    padding: 100px 0;
    background-color: #f8f9ff;
}

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

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: var(--dark);
    padding-right: 40px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: absolute;
    right: 30px;
    color: var(--primary);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 24px;
    color: var(--gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 30px;
    }

    .faq-icon {
        right: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }
} 