.actions .select-btn{
    background-color: rgb(17, 204, 221)!important;
    border-radius: 9px !important;
}

/* ─── Card ─── */
.apply-ein-card {
    background: linear-gradient(120.86deg, #FFFFFF 22.37%, #F7F8FA 41.94%);
    border: 1px solid #E3E5E5;
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
}

/* ─── Title ─── */
.apply-ein-card__title {
    font-size: 26px;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 20px;
    line-height: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* ─── Description ─── */
.apply-ein-card__description {
    font-size: 18px;
    font-weight: 400;
    color: #32393D;
    line-height: 22px;
    margin-bottom: 10px;
    padding-right: 70px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* ─── Subtext (gray) ─── */
.apply-ein-card__subtext {
    font-size: 18px;
    font-weight: 400;
    color: #BBBFC4;
    line-height: 28px;
    padding: 0;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}


.service-card {
    border: 1px solid white;
    border-radius: 16px;
    padding: 26px 20px 23px 20px;
    background: white;
    position: relative;
    transition: all 0.1s ease;
    cursor: pointer;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card:hover {
    border-color: #3b82f6;
}

.service-card:has(.hidden-radio:checked) {
    border-color: #3b82f6;
}

.ein-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ein-option-label {
    display: block;
    width: 100%;
    cursor: pointer;
}

.option-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
}

.radio-btn {
    width: 16px;
    height: 16px;
    border: 1px solid #DBDBDB;
    border-radius: 50%;
    background: white;
    position: relative;
    transition: all 0.1s ease;
    flex-shrink: 0;
}

.option-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}

.recommended-badge {
    background: linear-gradient(90deg, #ECF1F7 0%, #FFFFFF 100%);
    color: #32393D;
    font-size: 12px;
    font-weight: 500;
    border-radius: 160px;
    border: 1px solid #F4F4F4;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    padding: 0 12px;
    margin-bottom: 15px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.service-title {
    font-weight: 700;
    font-size: 16px;
    color: #32393D;
    margin: 0;
    line-height: 16px;
}


.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    max-width: 100%;
    transition: all 0.1s ease;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #5D5D5D;
    margin-bottom: 6px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li img {
    margin-right: 5px;
    flex-shrink: 0;
}

.hidden-radio {
    position: absolute;
    opacity: 0;
}

.service-card .hidden-radio:checked + .option-row .radio-btn {
    border-color: #229ED9;
}

.service-card .hidden-radio:checked + .option-row .radio-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #229ED9;
}

.actions {
    margin-top: 20px;
}

.service-details-subtext {
    font-size: 16px;
    font-weight: 400;
    color: #5D5D5D;
    font-style: Italic;
    line-height: 22px;
    letter-spacing: 0.015em;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

@media (max-width: 767.98px) {

    .ein-options {
        gap: 10px;
    }

    .apply-ein-card {
        padding: 16px 14px 21px 14px;
        margin-bottom: 10px;
    }

    .apply-ein-card__title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .apply-ein-card__description {
        font-size: 14px;
        padding-right: 0;
    }

    .apply-ein-card__subtext {
        font-size: 14px;
    }


    .recommended-badge {
        font-size: 10px;
        margin-bottom: 11px;
    }


    .features-list li {
        font-size: 14px;
    }

    .service-card {
        padding: 16px 14px 16px 14px;
    }

    .option-row {
        gap: 7px;
        margin-bottom: 7px;
    }

    .service-details-subtext {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0;
    }

    .actions {
        margin-top: 10px;
    }

}
