/* Numbered Steps Block Styles */

.numbered-steps-block {
    border-radius: 12px;
    border: 1px solid #D8DEE8;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: system-ui, sans-serif;
}

.steps-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

h3.section-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #3F1740;
    border-radius: 100px;
    flex-shrink: 0;
}

.step-number span {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.88;
    color: #FFFFFF;
}

.step-content {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.88;
    color: #575C66;
    flex: 1;
}

.step-content p{
    margin: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .numbered-steps-block {
        padding: 24px 16px;
    }
    
    .step-item {
        gap: 16px;
    }
}
