/* Responsive stats section */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    padding: 2rem 1rem;
}

.stat-card {
    background:linear-gradient(135deg, #87ceeb 0%, #ffffff 10%, #b8e6ff 10%, #ffffff 100%);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    min-width: 180px;
    flex: 1 1 180px;
    text-align: center;
    margin: 0.5rem;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0077b6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
}

@media (max-width: 700px) {
    .stats-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
    }
    .stat-card {
        min-width: unset;
        width: 100%;
        padding: 1.5rem 1rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}