.visitor-counter {
    display: flex;
    flex-direction: column;   /* stack title + digits */
    align-items: center;
    gap: 14px;                /* spacing between title and digits */
}

/* YOUR existing CSS – unchanged */
.counter {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.counter .digit {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow:
        0 2px 2px rgba(0, 0, 0, 0.08),
        0 2px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 600;
    color: #0d3980;
    line-height: 1;
    user-select: none;
}

.visiterText {
    font-size: 15px;
    font-weight: 600;
    color: beige;
}
