.mvp-tool-container .row {
    align-items: center;
    display: flex;
}

.mvp-tool-container {
    margin-bottom: 48px;
}

.mvp-tool-container .mvp-heading {
    /* padding-left: 0; */
    /* width: 100%; */
}

.mvp-heading .mvp-left-title {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mvp-heading .heading {
    margin: 0;
    font-size: 48px;
    line-height: 120%;
    font-weight: 600;
    color: var(--hebTeal);
}

.mvp-heading .description {
    margin: 20px 0 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 130%;
}

.mvp-form-section {
    padding: 32px;
    background-color: var(--hebTeal);
    border-radius: 15px;
    color: #fff;
    position: relative;
    transition: transform 0.5s ease, opacity 0.5s ease;
    overflow: hidden;
}

.mvp-form-section.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.mvp-tool-result-section {
    padding: 32px;
    background-color: #00414C;
    border-radius: 15px;
    color: #fff;
    position: relative;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    overflow: hidden;
}

.mvp-tool-result-section.slide-in-right {
    transform: translateX(0);
    opacity: 1;
}

.mvp-tool-question h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0 24px;
    line-height: 130%;
}

.mvp-tool-group label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #65CF8C33;
    border-radius: 4px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.mvp-tool-group label:hover {
    background-color: #65CF8C33;
}

/* Hide default radio button */
.mvp-tool-group label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
    margin: 0;
}

/* Style the span text */
.mvp-tool-group label input[type="radio"]+span {
    position: relative;
    padding-left: 32px;
    display: block;
    width: 100%;
    line-height: 1.5;
}

/* Custom radio button circle - default state with transparent background */
.mvp-tool-group label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.mvp-tool-group label.has-error input[type="radio"]+span::before {
    border-color: #E22E1C;
}

/* Inner circle with gap from border */
.mvp-tool-group label input[type="radio"]+span::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.mvp-tool-group label input[type="radio"]:checked+span::before {
    border: 2px solid #fff;
}

.mvp-tool-group label input[type="radio"]:checked+span::after {
    background-color: #fff;
}

/* Modern browser support with :has() selector */
.mvp-tool-group label:has(input[type="radio"]:checked) {
    background-color: #65cf8c66;
}

.mvp-tool-group label:has(input[type="radio"]:checked) span {
    color: #65cf8c66;
}

/* Text color when checked */
.mvp-tool-group label input[type="radio"]:checked+span {
    color: #fff;
}

.mvp-tool-error-message {
    display: none;
}

.mvp-tool-error-message.show {
    padding: 10px 15px;
    background-color: #E22E1C;
    color: #fff;
    border-radius: 4px;
    margin: 5px 0 0;
    display: inline-block !important;
    position: relative;
}

.mvp-tool-error-message.show:after {
    bottom: 100%;
    left: 12%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(226, 46, 28, 0);
    border-bottom-color: #E22E1C;
    border-width: 7px;
    margin-left: -7px;
}

.mvp-tool-submit {
    display: block;
    width: 100%;
    background-color: #FFD700;
    box-shadow: none;
    border: 0;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 22px;
    font-weight: 700;
    color: #00414C;
    margin-top: 24px;
    text-transform: uppercase;
    line-height: 120%;
}

.mvp-tool-submit:hover {
    background: #65CF8C;
}

.mvp-result-content {
    color: #fff;
}

.mvp-result-content h3 {
    font-size: 27px;
    font-weight: 600;
    margin: 0 0 15px;
}

.mvp-result-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #fff;
}

.mvp-result-content p span {
    font-size: 20px;
    font-weight: 600;
}

.mvp-result-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.mvp-result-content ul li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 8px 0;
}

.mvp-result-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    background: url(../../../images/tick.svg) no-repeat 0 9px;
    width: 22px;
    height: 22px;
}

.mvp-cta-section {
    padding-top: 25px;
    border-top: 1px solid #65CF8C33;
}

.mvp-cta-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.mvp-cta-button {
    display: block;
    background-color: #FFD700;
    color: #00414C;
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.mvp-cta-button[href^="tel:"]:before {
    background: url(../../../images/phone_teal) no-repeat center/26px auto;
    content: "";
    width: 26px;
    height: 26px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.mvp-cta-button:hover {
    background-color: var(--hebMint);
    color: #00414C;
    text-decoration: none;
}


.mvp-cta-links {
    display: flex;
    margin: 20px 0 0;
    justify-content: space-evenly;
}

.mvp-cta-links a {
    font-weight: 600;
    text-decoration: underline;
}

.mvp-cta-links .learn-more-link {
    color: #FFD700;
}



.mvp-cta-links .restart-tool-link {
    color: rgba(255, 255, 255, .6);
}

.mvp-cta-links .learn-more-link:hover,
.mvp-cta-links .restart-tool-link:hover {
    color: var(--hebMint);
}

.mvp-cta-links a:hover {
    text-decoration: none;
}


@media (max-width:991px) {
    .mvp-tool-container .row {
        flex-direction: column;
    }

    .mvp-heading img {
        width: 58px;
    }

    .mvp-heading .heading {
        font-size: 27px;
    }

    .mvp-heading .description {
        font-size: 16px;
        margin: 20px 0 30px;
    }

    .mvp-form-section {
        padding: 20px 16px;
    }

    .mvp-tool-question h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
}