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

.fps-faq-page h1 {
    font-size: 1.8rem;
    color: #1a1a17;
    text-align: center;
    margin-bottom: 12px;
}

.fps-faq-page .fps-faq-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.fps-faq-section {
    margin-bottom: 40px;
}

.fps-faq-section h2 {
    font-size: 1.2rem;
    color: #86866C;
    border-bottom: 2px solid #86866C;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.fps-faq-item {
    background: #fff;
    border: 1px solid #e8e5df;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.fps-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fps-faq-question {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: #f7f5f0;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #1a1a17;
    font-weight: 600;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.fps-faq-question:hover {
    background: #efeae3;
}

.fps-faq-question .fps-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #86866C;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
}

.fps-faq-question .fps-faq-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: #86866C;
    transition: transform 0.3s ease;
}

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

.fps-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.fps-faq-item.active .fps-faq-answer {
    padding: 16px 20px;
    max-height: 500px;
}

.fps-faq-answer p {
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.fps-faq-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, #f7f5f0 0%, #efeae3 100%);
    border-radius: 12px;
}

.fps-faq-cta h3 {
    font-size: 1.2rem;
    color: #1a1a17;
    margin-bottom: 12px;
}

.fps-faq-cta p {
    color: #666;
    margin-bottom: 20px;
}

.fps-faq-cta .fps-cta-button {
    display: inline-block;
    background: #86866C;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.fps-faq-cta .fps-cta-button:hover {
    background: #6f6f58;
    transform: translateY(-1px);
}

@media (max-width: 560px) {
    .fps-faq-page {
        padding: 24px 16px;
    }

    .fps-faq-page h1 {
        font-size: 1.4rem;
    }

    .fps-faq-question {
        font-size: 0.9rem;
        padding: 14px 16px;
    }
}
