.faq-page {
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.faq-back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #C8102E;
    text-decoration: none;
}

.faq-back-link:hover {
    text-decoration: underline;
}

.faq-header {
    margin-bottom: 2rem;
}

.faq-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1A5C4A;
    margin-bottom: 0.5rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.faq-intro {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.faq-item[open] {
    border-color: rgba(200, 16, 46, 0.25);
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.08);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #1f2937;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: rgba(26, 92, 74, 0.1);
    color: #1A5C4A;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-item[open] .faq-number {
    background: #C8102E;
    color: #fff;
}

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    margin-top: 0.2rem;
    color: #9ca3af;
    font-size: 0.8rem;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: #C8102E;
}

.faq-answer {
    padding: 0 1.1rem 1.1rem 3.35rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0 0 0.75rem;
}

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

.faq-answer ul {
    margin: 0 0 0.75rem;
    padding-left: 1.2rem;
}

.faq-answer li {
    margin-bottom: 0.35rem;
}

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

.faq-cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, #1A5C4A 0%, #134436 100%);
    color: #fff;
}

.faq-cta h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.faq-cta-btn--primary {
    background: #F4C430;
    color: #1f2937;
}

.faq-cta-btn--primary:hover {
    background: #e6b520;
}

.faq-cta-btn--outline {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.faq-cta-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-empty {
    padding: 2rem 1.5rem;
    text-align: center;
    color: #6b7280;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    border-radius: 0.5rem;
}

@media (max-width: 640px) {
    .faq-page {
        padding: 2rem 1rem 3rem;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-answer {
        padding-left: 1.1rem;
    }
}
