.process-step {
    /* Změna zde: Odstraněn flexbox, ponecháno zarovnání vlevo */
    text-align: left;
    padding: 20px;
}
.step-number-box {
    width: 80px;
    height: 80px;
    /* Změna zde: Margin nastaven pro mezeru pod kroužkem */
    margin-bottom: 25px;
    background-color: #26ace3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    border: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.process-step:hover .step-number-box {
    transform: scale(1.1);
    background-color: #26ace3;
}
.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
