
    .control-plan {
        background-color: #ECFCF5;
        color: white;
        padding: 64px 104px;
    }

    .plan-container-control {
        background-color: #0d3b2e;
        display: flex;
        justify-content: space-between;
        gap: 100px;
        max-width: 1240px;
        margin: 0 auto;
        border-radius: 12px;
        padding: 16px;
    }

    .plan-text-control {
        padding: 16px;
        text-align: center;
        margin-top: 35px;
    }


    .plan-text-control h2 {
        margin-bottom: 10px;
        font-size: 40px;
        font-weight: 400;
        line-height: 120%;
        font-family: "Replica-LL", sans-serif;
    }

    .plan-text-control p {
        font-size: 16px;
        color: #fff;
        line-height: 1.6;
        max-width: 500px;
        font-weight: 400;
        font-family: "Roboto", sans-serif;
    }

    .quote-box {
        background: white;
        color: #333;
        border-radius: 10px;
        padding: 20px;
        max-width: 460px;
    }

    .quote-control {
        font-size: 16px;
        line-height: 1.6;
        color: #fff !important;
    }

    .author {
        display: flex;
        align-items: center;
        gap: 15px;
        border-top: 1px solid #37373733;
        padding: 10px 0px;
    }

    .author img {
        border-radius: 50%;
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

    .author .approved {
        font-size: 14px;
        color: #111;
        margin-bottom: 0px;
    }

    .author h4 {
        margin: 0;
        font-size: 20px;
        font-weight: 400;
        line-height: 120%;
        font-family: "Replica-LL", sans-serif;
    }

    .author span {
        font-size: 14px;
        color: #111;
        font-weight: 400;
        font-family: "Roboto", sans-serif;
        line-height: 140%;
    }

    /* Right image */
    .plan-image-control {
        flex: 1;
        min-width: 585px;
        display: flex;
        justify-content: start;
        text-align: center;
    }

    .plan-image-control img {
        width: 100%;
        max-width: 585px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .cta-button-control {
        background-color: #57A372;
        color: white;
        border: none;
        padding: 16px 48px;
        font-size: 18px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: "Roboto";
        width: 100%;
        margin: 15px 0px;
        display: block;
    }

    .genetic-svg-section {
        display: flex;
        gap: 10px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }

    .control-date {
        color: #348A23;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .plan-container-control {
            flex-direction: column;
            text-align: center;
        }

        .plan-text-control {
            text-align: center;
        }

        .quote-box {
            margin: 0 auto;
        }
    }

    @media (min-width: 375px) and (max-width: 767px) {
        .control-plan {
            background-color:#0d3b2e;
            padding: 32px 16px !important;
        }
        .plan-image-control {
            min-width: auto;
        }
        .plan-image-control img {
            max-width: 358px;
            border-radius: 5px;
        }
        .plan-text-control {
            margin-top: 0px;
        }
        .plan-container-control {
            padding: 0px;
            background-color: unset;
        }
        .plan-text-control p {
            margin: 10px 0px;
        }
        .cta-button-control {
            margin: 20px 0px;
        }
        .quote-control {
            margin: 0px !important;
            text-align: left;
        }
        .genetic-svg-section {
            width: 275px;
            gap: 0px;
        }
    }
     @media (min-width: 768px) and (max-width: 1024px) {
        .plan-container-control {
            gap: 0px;
        }
        .plan-image-control {
            min-width: auto;
        }
        .plan-image-control img {
            width: 100%;
            max-width: 100%;
        }
        .control-plan {
            padding: 32px 16px;
        }
        .plan-text-control p {
            max-width: 100%;
        }
        .plan-text-control {
            padding: 16px 0px;
        }
     }