section.stats-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    margin-top: 3rem; /* Add space between slider and stats */
}

section.stats-section .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

section.stats-section .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

section.stats-section .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

section.stats-section .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    section.stats-section .stat-card {
        margin-bottom: 1.5rem;
    }
    
    section.stats-section .stat-number {
        font-size: 3rem;
    }
    
    section.stats-section .stat-label {
        font-size: 0.9rem;
    }
}