/* Stats Section Styles */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    text-align: center;
}

.stat-item {
    flex: 0 1 30%;
    min-width: 200px;
    padding: 1.5rem;
    background: rgb(255 255 255 / 0.1);
    border-radius: 10px;
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: bold;
    display: inline-block;
    margin-right: 0.3rem;
}

.stat-item p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 2rem;
    }
}