
    .personalized-plan {
        background-color: #FFFFFF;
        color: white;
        padding: 64px 104px;
    }

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

    .plan-text {
        padding: 16px;
    }


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

    .plan-text p {
        font-size: 16px;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 30px;
        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 {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.6;
        color: #111 !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 {
        flex: 1;
        min-width: 550px;
        display: flex;
        justify-content: end;
        text-align: center;
    }

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

    .reports-description {
        margin-bottom: 15% !important;
    }

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

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

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

    @media (min-width: 325px) and (max-width: 767px) {
        .personalized-plan {
            padding: 32px 16px;
            background-color: #0d3b2e;
        }

        .plan-image {
            min-width: 350px;
        }

        .reports-description {
            margin-bottom: 15px !important;
            text-align: center;
        }

        .quote-box {
            margin-top: 15px !important;
        }

        .plan-text {
            padding: 0px;
        }

        .plan-container {
            background-color: unset;
            padding: unset;
        }

        .approved {
            text-align: left;
            margin-bottom: 0px !important;
        }

        .quote {
            text-align: left;
        }

        .author h4 {
            font-weight: bold !important;
        }

        .author span {
            font-size: 14px;
            color: #111;
            font-weight: 400;
            font-family: "Roboto", sans-serif;
            line-height: 140%;
            text-align: left;
            justify-content: start;
            display: flex;
        }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        .personalized-plan {
            padding: 32px 16px;
            background-color: #0d3b2e;
        }
        .plan-image {
            min-width: auto;
            justify-content: start;
        }

        .reports-description {
            margin-bottom: 5% !important;
            max-width: 100% !important;
        }
        .plan-text p {
            max-width: 100%;
        }
        .plan-image img {
            max-width: 100%;
        }
        .author .approved {
            text-align: start;
        }

        .author span {
            text-align: start;
            justify-content: start;
            display: flex;
        }

        .plan-text {
            padding: 16px 0px;
        }

        .quote-box {
            max-width: 100% !important;
        }
    }