/* FAQ Page Styles */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.4em;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #0077D4;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
}

.faq-answer p {
    margin: 15px 0 0;
}
