.how-it-works-application {
    background: linear-gradient(268deg, #fbbed0, #ffdac9);
    padding: 90px 20px;
    font-family: sans-serif;
}

.how-it-works-application .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.how-it-works-application .text-side {
    flex: 1 1 250px;
}

.how-it-works-application .text-side h4 {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    color: #3b3b3b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.how-it-works-application .text-side h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #3b3b3b;
    margin: 0;
    line-height: 1.4;
}

.how-it-works-application .steps {
    display: flex;
    flex: 2 1 600px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.how-it-works-application .step {
    flex: 1 1 200px;
    max-width: 300px;
}

.how-it-works-application .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #fa5d63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2vw, 22px);
    color: white;
    margin-bottom: 10px;
}

.how-it-works-application .step h5 {
    font-size: clamp(16px, 2vw, 20px);
    color: #333;
    margin: 0;
    font-weight: 500;
}

.how-it-works-application .step strong {
    display: block;
    margin: 6px 0;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: #111;
}

.how-it-works-application .step p {
    font-size: clamp(14px, 1.8vw, 18px);
    color: #555;
    line-height: 1.5;
}

@media (max-width: 1025px) {
    .how-it-works-application .container {
        flex-direction: column;
        align-items: center;
    }

    .how-it-works-application .text-side {
        flex: auto;
        max-width: 100%;
        text-align: center;
    }

    .how-it-works-application .steps {
        flex: auto;
    }
}

@media (max-width: 768px) {
    .how-it-works-application .steps {
        flex-direction: column;
        gap: 20px;
    }

    .how-it-works-application .step {
        max-width: 100%;
    }
}

.mt-0 {
    margin-top: 0 !important;
}

.business-date-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.business-date-wrapper .radio-date-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.business-date-wrapper .date-input {
    padding: 8px 12px;
    font-size: 16px;
    width: 120px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.business-date-wrapper input[type="radio"] {
    height: 21px !important;
    width: 25px !important;
    accent-color: #000000;
}

.business-date-wrapper .radio-label {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.tax-id-wrapper .tax-id-hint {
    font-size: 13px;
    color: #555;
    display: none;
    margin-top: 14px;
    line-height: 1.4;
}

.ownership-wrapper .ownership-input-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.ownership-wrapper .ownership-input-wrapper input[type="number"] {
    width: 100px;
}

.ownership-wrapper .ownership-suffix {
    font-size: 16px;
    color: #333;
}

