    .info_lr {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .japan-badge {
        width: 130px;
        /* adjust size if needed */
        height: 40px;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #000;
    }

    /* 20% Left */
    .flag-area {
        width: 30%;
        height: 100%;
        background: #fff;
    }

    /* Japan flag circle */
    .jp-flag {
        width: 36px;
        height: 36px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .jp-dot {
        width: 18px;
        height: 18px;
        background: #d40000;
        border-radius: 50%;
    }

    /* 80% Right */
    .text-area {
        width: 71%;
        height: 100%;
        background: #000;
        color: #fff;
        /* padding-left: 2px; */
    }

    .top-text {
        font-family: 'Helvetica', 'Arial', sans-serif;
        font-size: 11px;
        font-weight: 100;
        /* very thin */
        letter-spacing: 1px;
        line-height: 1;
        text-align: center;
    }

    .bottom-text {
        font-family: 'Helvetica', 'Arial', sans-serif;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 1px;
        line-height: 1;
        text-align: center;
    }

    /* red and blue button added */
    .btn-red {
        background-color: red !important;
        /* red */
        color: white !important;
        border-radius: 10px !important;
        /* slightly rectangular */
    }

    .btn-sky {
        background-color: #3498db !important;
        /* sky blue */
        color: white !important;
        border-radius: 10px !important;
        /* slightly rectangular */
    }

    .btn .en_text {
        font-size: 23px !important;
        padding-left: 5px !important;
        font-weight: 500;
    }



    .button-row .btn {
        white-space: nowrap;
        /* prevents text from breaking */
        width: 50% !important;
        position: relative;
        /* needed for tooltip positioning */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-left: 3px !important;
        /* remove any inner spacing */
        padding-right: 0 !important;
        margin-left: 8px !important;
        margin-right: 0 !important;
    }


    /* Tooltip starts */

    .button-row .btn {
        position: relative;
        /* parent for absolute tooltip */
        overflow: visible;
        /* ensure tooltip isn’t clipped */
    }

    .button-row .btn .tooltip-text {
        visibility: visible !important;
        /* always show */
        opacity: 1 !important;
        /* fully visible */
        position: absolute;
        z-index: 9999;
        /* above everything */
        bottom: 120%;

        left: 0;
        transform: none;
        width: 100%;
        box-sizing: border-box;
        /* fits small screens */
        background-color: #fff;
        text-align: center;
        padding: 5px 10px;
        border-radius: 4px;
        border: 1px solid #ccc;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        font-size: 14px;
        font-weight: 500;
        word-wrap: break-word;
    }

    /* Tooltip arrow */
    .button-row .btn .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #fff transparent transparent transparent;
    }

    /* Red button tooltip */
    .btn-red .tooltip-text {
        color: red;
        border: 1px solid red;
    }

    .btn-red .tooltip-text::after {
        border-color: red transparent transparent transparent;
    }

    /* Sky button tooltip */
    .btn-sky .tooltip-text {
        color: #3498db;
        border: 1px solid #3498db;
    }

    .btn-sky .tooltip-text::after {
        border-color: #3498db transparent transparent transparent;
    }

    .responsive-icon1 {
        width: 200%;
        /* scales to parent container */
        height: 200%;
        /* keeps aspect ratio */
        max-width: 235px;
        /* optional: controls max size */
        max-height: 235px;
    }

    .responsive-icon2 {
        width: 200%;
        /* scales to parent container */
        height: 100%;
        /* keeps aspect ratio */
        max-width: 235px;
        /* optional: controls max size */
        max-height: 235px;
    }


    /* Mobile adjustments */

    @media (min-width: 1024px) {
        .en_content-banner {
            position: static !important;
            top: -25px;
            /* move text up */
        }


    }

    @media (max-width: 480px) {
        .button-row .btn .tooltip-text {
            font-size: 12px;
            padding: 8px 8px;
            bottom: 110%;
        }

        .btn-sky {
            margin-top: 40px !important;
        }

        /* Parent container centers everything inside */
        .page-global-sp_lp .en_content-image_lp .image img {
            margin-left: 15px !important;
            margin-right: 15px !important;
        }


    }

    /* tooltip ends */
    @media (max-width: 480px) {

        /* adjust breakpoint as needed */
        .button-row {
            flex-direction: column;
            margin-left: 15px;
            margin-right: 15px;
            /* stack vertically */
            align-items: stretch;
            /* buttons take full width */
        }

        .button-row .btn {
            width: 100% !important;
            /* full width buttons */
            margin: 5px;
            /* spacing between buttons */
        }

        .button-row .btn-red {
            order: 1;
            /* red button on top */
        }

        .button-row .btn-sky {
            order: 2;
            /* blue button below */
        }
    }

    /* Make the container a horizontal flex row */
    /* Parent container: force horizontal flex */
    .en_box-text-info {
        display: flex !important;
        /* horizontal flex */
        flex-direction: row !important;
        /* row layout */
        justify-content: center !important;
        /* center all items horizontally */
        align-items: center !important;
        /* vertically center icons + text */
        flex-wrap: nowrap !important;
        /* prevent wrapping */
    }

    /* Make items stay inline on large screens, stack on smaller */
    @media (max-width: 992px) {

        /* below lg breakpoint */
        .en_box-text-info {
            justify-content: flex-start !important;
            /* optional: left-align on small */
            gap: 1rem !important;
        }

        .page-global-sp_lp .en_content-image_lp .image img {
            margin-left: 15px !important;
            margin-right: 15px !important;
        }
    }

    @media(max-width: 1180px) {
        .page-global-sp_lp .en_content-image_lp .image img {
            margin-left: 15px !important;
            margin-right: 15px !important;
        }
    }

    @media (max-width: 576px) {

        /* below sm breakpoint */
        .en_box-text-info {
            flex-direction: column !important;
            /* stack vertically */
            align-items: flex-start !important;
            gap: 0.8rem !important;
        }

        .en_box-text-info .item {
            width: 100% !important;
            /* full width for each item */
        }
    }