.section-steps-block {
    padding: 64px 64px 96px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-beige);
}

.steps-block-heading {
    padding: 64px 64px 24px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#steps-block-title {
    line-height: 100%;
    margin-bottom: 12px;
    width: 600px;
}

#steps-block-description {
    text-align: center;
    width: 616px;
    padding-bottom: 36px;
    opacity: 0.7;
}

.steps-block-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.steps-block-steps {
    display: flex;
    flex-direction: column;
    padding-bottom: 64px;
    width: 100%;
}

.steps-block-steps-main {
    display: flex;
    flex-direction: row;
    padding: 24px;
    gap: 24px;
}

.steps-block-steps-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.steps-block-steps-left {
    width: 50%;
    background-image: url("../images/ai-qa.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.steps-block-steps-row {
    display: flex;
    flex-direction: row;
}

.steps-block-step {
    width: 100%;
    height: 156px;
    border: var(--color-beige-2) solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px;
    font-size: 16px;
    cursor: pointer;
}

.step-active {
    background-color: #E8E8DD !important;
}

.steps-block-step-description {
    display: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.6;
}

.step-active .steps-block-step-description {
    display: block;
    opacity: 0.7;
}

.steps-block-step-number {
    font-family: var(--font-heading-family), sans-serif;
    font-size: 24px;
}

.steps-block-step-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
}

.steps-block-step-title {
    font-weight: 600;
}

.steps-block-step-description {
    font-weight: 300;
    opacity: 0.7;
    padding-right: 28px;
}

.steps-block-steps-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-primary-bg);
    margin: 0 24px 24px 24px;
    padding: 16px 24px;
}

.steps-block-steps-footer-text {
    font-size: 12px;
    margin: 0;
    padding: 0;
    color: var(--color-beige);
}

.step-image {
    display: none;
}

.step-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1200px) {
    .section-steps-block {
        padding: 40px 24px;
    }
}

@media (max-width: 920px) {
    .steps-block-step-description {
        font-size: 14px;
        letter-spacing: -0.01rem;
    }
}

@media (max-width: 768px) {
    .section-steps-block {
        padding: 40px 16px;
    }
    .steps-block-heading {
        padding: 0;
        gap: 16px;
        width: 100%;
    }
    #steps-block-title {
        font-size: 32px;
        width: unset;
        margin-bottom: 0;
    }
    #steps-block-description {
        font-size: 16px;
        width: unset;
        padding-bottom: 16px;
    }
    .steps-block-steps {
        width: 100%;
        padding-bottom: 0;
     }
    .steps-block-steps-main {
        width: 100%;
        flex-direction: column;
        padding: 36px 0;
    }
    .steps-block-steps-left {
        display: none;
    }
    .steps-block-steps-right {
        width: 100%;
        gap: 36px;
    }
    .steps-block-step-description {
        font-size: 16px;
        letter-spacing: normal;
        display: block !important;
    }
    .step-image {
        display: block;
        width: 100%;
    }
    .step-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    .steps-block-step {
        background-color: #E8E8DD;
        height: auto;
        padding: 0;
        cursor: none;
    }
    .steps-block-step-header{
        padding: 20px 20px 0 20px;
    }
    .steps-block-step-content {
        padding: 0 20px 20px 20px;
    }
    .steps-block-steps-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin: 0;
        padding: 12px;
    }
    .steps-block-steps-footer-text {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .steps-block-buttons {
        padding-top: 0;
        margin: 0;
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        font-size: 14px;
    }

    #steps-block-hire-talent-button,
    #steps-block-get-demo-button {
        width: 100%;
    }
}