/* FAQ Accordion Styles */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item point {
    cursor: pointer;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary large height */
    padding-top: 10px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-brown);
}