/* Responsive styles for statistics section */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .statistics-section {
        padding: 3.5rem 1.5rem;
    }
    
    .statistics-container {
        max-width: 900px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .stat-item {
        max-width: 240px;
        padding: 2.5rem 1.5rem;
    }
}

/* Tablets and large mobile devices */
@media (max-width: 768px) {
    .statistics-section {
        padding: 3rem 1rem;
    }
    
    .statistics-container {
        max-width: 600px;
        padding: 0 0.5rem;
    }
    
    .statistics-header {
        margin-bottom: 2.5rem;
    }
    
    .statistics-heading {
        font-size: 1.8rem;
        max-width: 500px;
    }
    
    .statistics-subtext {
        font-size: 1rem;
        max-width: 450px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .stat-item {
        padding: 2rem 1rem;
        max-width: 280px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .statistics-section {
        padding: 2.5rem 1rem;
    }
    
    .statistics-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .statistics-header {
        margin-bottom: 2rem;
    }
    
    .statistics-heading {
        font-size: 1.6rem;
        max-width: 100%;
        line-height: 1.2;
    }
    
    .statistics-subtext {
        font-size: 0.95rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .stat-item {
        max-width: 280px;
        width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
        line-height: 1.3;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .statistics-section {
        padding: 2rem 0.5rem;
    }
    
    .statistics-container {
        padding: 0 0.25rem;
    }
    
    .statistics-heading {
        font-size: 1.4rem;
        padding: 0 0.5rem;
    }
    
    .statistics-subtext {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .statistics-grid {
        gap: 1.25rem;
    }
    
    .stat-item {
        max-width: 260px;
        padding: 1.75rem 1.25rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .statistics-section {
        padding: 2rem 1rem;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        max-width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}
