        .stats-container {
        background-color: #ffffff;
        border: 1px solid #dee2e6;
        border-radius: 0.5rem;
        padding: 20px;
        margin: 30px 0;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .stats-container h2 {
        font-size: 1.25rem;
        color: #D71920;
        text-align: center;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        }

        .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding-top: 40px;
        }

        .stat-box {
        display: flex;
        flex-direction: column;
        }

        .stat-label {
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 4px;
        color: #333;
        }

        .bar-container {
        height: 8px;
        background-color: #e9ecef;
        border-radius: 4px;
        overflow: hidden;
        }

        .bar-nancy {
        height: 8px;
        background-color: #D71920;
        transition: width 0.4s ease;
        }

        .stat-value {
        text-align: right;
        font-size: 0.9rem;
        color: #555;
        margin-top: 3px;
        }

        @media (max-width: 576px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }
        }