/* ===========================================
   Win Rate Improvement Page Specific Styles
   =========================================== */

.wr-imp-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 0;
}

.page-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.page-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.faq-question {
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.faq-answer strong {
    color: var(--text-primary);
}

.text-primary {
    color: var(--primary-green);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}
