.box-steps {
    width: 100%;
    min-height: 65vh;
    background-image: url("../images/step-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-sub-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #faf2f2;
    text-align: center;
    margin-bottom: 20px;
}

.steps-main-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    color: #444444;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.steps-main-title .brand {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: var(--bs-neutral-main);
}

.steps-layout {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Stretch items to have equal height */
    position: relative;
}

.step-item {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0; /* Keep image size stable */
}

.step-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.step-text {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    color: #444444;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
}

.step-description {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #737373;
    margin-top: 10px;
    padding: 5px;
    flex-grow: 1; /* Take up extra space to push number down */
}

.steps-container::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #27368b;
    z-index: 1;
    transform: translateY(50%);
}

.step-number {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #27368b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    color: #f1f7ff;
    position: relative;
    z-index: 2;
    flex-shrink: 0; /* Keep circle round */
}

@media (max-width: 1600px) {
    .box-steps {
        min-height: 80vh;
    }
}
