.step-section .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.step-section .section-content {
    max-width: 760px;
    flex: 0 1 760px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step {
    display: flex;
    gap: 10px;
}

.step-section .step-colours {
    position: relative;
    flex-shrink: 0;
    width: 160px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.step-section .step-content {
    border-radius: 20px;
    background: linear-gradient(93deg, #F1F0F0 36.96%, #FFF 101.51%);
    padding: 25PX;
}

.step-section .step-content p {
    margin-bottom: 0;
}

.step-number {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.20);
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -1.5px;
}

.step-section .step-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.step-section .step-colours[data-color="blue"] {
    background: var(--royal-blue);
}

.step-section .step-colours[data-color="black"] {
    background: #000000;
}

@media (max-width: 991px) {
    .step-section .header-wrapper {
        display: block;
    }

    .steps {
        grid-template-columns: repeat(1, 1fr);
    }

    .step {
        display: grid;
    }

    .step-section .step-colours {
        height: 60px;
        position: relative;
        flex-shrink: 0;
        width: 100%;
    }
}