.counter-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #289a96;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.counter-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
} 