.counter-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
    font-family: 'Montserrat', sans-serif; 
}

.counter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-family: 'Montserrat', sans-serif; 
}

.counters-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px; 
}

.counter-box {
    padding: 40px 30px; 
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 250px; 
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    box-sizing: border-box; 
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter {
    font-size: 3.5rem;
    font-weight: bold;
    color: #006C93;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
    width: 100%;
}

.counter-box p {
    margin-top: 0;
    font-size: 1.2rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

@media (max-width: 768px) {
    .counters-container {
        flex-direction: column;
        align-items: center;
    }
    
    .counter-box {
        width: 100%;
        max-width: 300px;
    }
}