/* Mobile-First Statistics Section Styles */

.stats-section {
    width: 100%;
    padding: 30px 0;
    background-color: #f9f9f9;
    margin-top: 0;
    margin-bottom: 20px;
    order: 2; /* Ensures this appears right after About Us section */
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    padding: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Small mobile (portrait phones) */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box {
        padding: 10px;
    }
}

/* Tablet and desktop */
@media (min-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-box {
        position: relative;
        flex: 1;
    }
    
    .stat-box:not(:last-child)::after {
        content: "•";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #ccc;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 48px;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}
