/* Statistics Section */
.statistics-section {
    background-color: #1b365d;
    padding: 5rem 0;
    color: white;
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.statistic-item {
    padding: 20px;
}

.statistic-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.statistic-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .statistics-section {
        padding: 2.5rem 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .statistic-number {
        font-size: 2.5rem;
    }
    
    .statistic-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .statistic-number {
        font-size: 2.2rem;
    }
} 