/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
}

.faq-section .section-label {
    margin-bottom: 8px;
}

.faq-section h2 {
    margin-bottom: 32px;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #e0d5c7;
}

.faq-item:first-child {
    border-top: 1px solid #e0d5c7;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #23282d;
    font-family: inherit;
    line-height: 1.5;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #a08560;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7f3ed;
    transition: transform 0.3s ease, background 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #a08560;
    color: #fff;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-answer-inner {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* Schema markup visually hidden */
.faq-schema {
    display: none;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 16px 0;
        font-size: 0.95rem;
    }

    .faq-answer-inner {
        font-size: 0.9rem;
    }
}
