.three-billets {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.image-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image-and-buttons {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: auto;
}

.button-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    margin-left: -15px !important;
}
@media (max-width: 1000px) {
    .button-text-container  {
        margin-bottom: 10px !important;
    }
}
.row.three-block-rows {
    display: flex;
    width: 100%;
    padding-left: 20px;
    gap: 20px;
    flex-wrap: nowrap !important;
}

.three-block-price {
    width: 33.1% !important;
    margin-left: -7px !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 26px;
    padding: 26px 8px 10px 35px;
}

/* Убираем лишний отступ у последнего блока */
.three-block-price:last-child {
    margin-right: 0;
}




/* Анимации для блоков */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.stage-block.animate-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.stage-block-2.animate-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.stage-block.animate-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.stage-block-2.animate-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

/* Стили для блоков этапов работы */
.stages-container {
    width: 100%;
    margin-top: 30px;
}

.stage-block,
.stage-block-2 {
    display: flex;
    background: transparent;
    align-items: flex-start;
    margin-top: 10px;
    width: 100%;
    padding-left: 20px;
    border: 2px solid rgba(204, 236, 65, 1);
    border-radius: 30px;
    opacity: 0; /* Начальное состояние - скрыто */
}

.stage-block-2 {
    background: rgba(225, 225, 225, 1);
    border: none !important;
}

.stage-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: auto 0;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 10px;
}

