/* Stats Section Styles */
.stats-section {
    padding: 100px 0;
    background: #ffffff;
    color: #1a2a36;
    text-align: center;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a2a36;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1de782;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

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

    .stat-number {
        font-size: 3rem;
    }
}