    body,
    html {
        margin: 0;
        padding: 0;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    @media (max-width:500px) {
        body {
            width: 100% !important;
        }
    }

    header {
        background: #ffffff;
        color: #004aad;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-decoration: none;
        color: #004aad;
        border-radius: 4px;
        padding: 0.2em 0.8em;
        font-family: inherit;
    }

    .menu-btn {
        background: none;
        border: none;
        cursor: pointer;
        display: none;
        flex-direction: column;
        gap: 5px;
    }

    .menu-btn span {
        display: block;
        height: 3px;
        width: 28px;
        background: #000000;
        border-radius: 2px;
    }

    @media (max-width: 768px) {
        .menu-btn {
            display: flex;
        }

        nav,
        .nav-links {
            display: none;
        }
    }

    .hamburger-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.22);
        display: none;
        z-index: 2000;
    }

    .hamburger-menu.show {
        display: block;
    }

    .menu-panel {
        background: #f6f7f9;
        width: 420px;
        max-width: 100vw;
        height: 100vh;
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.10);
        padding: 32px 0 0 0;
        position: relative;
        animation: slideIn .28s cubic-bezier(.44, .49, .48, 1.06);
    }

    @keyframes slideIn {
        from {
            transform: translateX(-100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .menu-close {
        position: absolute;
        top: 20px;
        right: 22px;
        font-size: 2rem;
        font-weight: 400;
        color: #888;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-panel ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .menu-panel li {
        border-bottom: 1px solid #ececec;
    }

    .menu-panel a,
    .menu-panel .menu-header {
        display: block;
        padding: 28px 38px;
        font-size: 1.22rem;
        color: #222;
        text-decoration: none;
        font-weight: 500;
        font-family: inherit;
    }

    .menu-panel .menu-header {
        font-weight: 600;
        font-size: 1.25rem;
        color: #004aad;
        border-bottom: 2px solid #e8e8ec;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .menu-panel .icon-user {
        font-size: 1.1em;
        margin-right: 8px;
    }

    .menu-panel .app-link {
        color: #004aad;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .menu-panel .icon-app {
        background-color: #fff;
        color: #004aad;
        font-size: 1.15em;
        border: 1.5px solid #004aad;
        border-radius: 4px;
        padding: 4px 7px;
    }

    .menu-panel a:hover {
        background: #e8e8ec;
    }

    /* hero section */
    /* Font Import and Base Styles */
    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');

    body {
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
        margin: 0;
        background: #fff;
    }

    .hero-section {
        display: flex;
        align-items: normal;
        gap: 3vw;
        justify-content: center;
        /*min-height: 70vh;*/
        padding: 2.5vw 3vw 2vw 6vw; 
        flex-direction: row-reverse;
    }

    .hero-content {
        flex: 1 1 44%;
    }

    .hero-image {
        flex: 1 1 48%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 40px;
        aspect-ratio: 2/1.3;
        object-fit: cover;
        box-shadow: 0 2px 28px rgba(0, 0, 0, 0.09);
    }

    .hero-content h1 {
        font-size: 40px;
        font-weight: 600;
        margin-top: 0;
        line-height: 1.367;
        letter-spacing: -0.7px;
    }

    .hero-form-section {
        max-width: 600px;
        margin: 36px auto;
        padding: 0 12px;
    }

    .tab-group-v2 {
        display: flex;
        width: 100%;
        margin-bottom: 18px;
        gap: 0;
        background: #eceff3;
        border-radius: 4px;
        overflow: hidden;
        box-sizing: border-box;
        padding: 5px 5px;
    }

    .tab-v2 {
        flex: 1 1 0;
        padding: 14px 0 13px 0;
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c2c34;
        background: transparent;
        border: none;
        border-radius: 0;
        outline: none;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;
        border: 2.5px solid transparent;
    }

    .tab-v2.active {
        background: #fff;
        color: #151618;
        border: 2.5px solid #b0cbea;

        box-shadow: 0px 2px 9px 0 rgba(140, 170, 215, .03);
    }

    .stylish-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 19px;
        margin-top: 0;
    }

    .input-row {
        display: flex;
        align-items: center;
        background: #fff;
        border: 2px solid #e6eaf4;
        border-radius: 15px;
        padding: 18px 18px 18px 16px;
        font-size: 1.2rem;
        color: #1b2430;
        box-sizing: border-box;
    }

    .input-row+.input-row {
        margin-top: 0;
    }

    .icon {
        font-size: 1.45rem;
        margin-right: 18px;
        color: #9aa4b6;
        flex-shrink: 0;
    }

    input[type="text"] {
        border: none;
        outline: none;
        width: 100%;
        font-size: 1.2rem;
        font-family: inherit;
        background: transparent;
        color: #1b2430;
        padding: 0;
        margin: 0;
        font-weight: 500;
    }

    ::placeholder {
        color: #b7c1cf;
        font-weight: 400;
        opacity: 1;
    }

    .label-row {
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .label-input {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .label {
        font-size: 1.02rem;
        color: #7c8598;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .dropdown {
        position: absolute;
        right: 8px;
        top: 33px;
        font-size: 1.15em;
        color: #b2b4bd;
        pointer-events: none;
    }

    .cta-btn {
        width: 100%;
        padding: 19px 0;
        font-size: 1.45rem;
        font-family: inherit;
        border: none;
        border-radius: 100px;
        background: #1677fa;
        color: #fff;
        font-weight: 700;
        margin-top: 10px;
        cursor: pointer;
        letter-spacing: 0.01em;
        box-shadow: 0 4px 24px rgba(22, 119, 250, 0.10);
        transition: background 0.13s;
    }

    .cta-btn:hover,
    .cta-btn:focus {
        background: #1158b0;
        outline: none;
    }

    @media (max-width: 550px) {
        .hero-form-section {
            max-width: 98vw;
            margin: 8vw auto;
        }

        .tab-v2 {
            font-size: 1.06rem;
        }

        .stylish-form {
            gap: 12px;
        }

        .input-row {
            font-size: 1.07rem;
            padding: 12px 12px 12px 9px;
        }

        .cta-btn {
            font-size: 1.02rem;
            padding: 13px 0;
        }

        .hero-image {
            display: none;
        }
    }


    @media (max-width: 1100px) {
        .hero-section {
            flex-direction: column;
            padding: 3vw 2vw;
        }

        .hero-image {
            margin-top: 2.5vw;
        }
    }

    @media (max-width: 600px) {
        .hero-section {
            flex-direction: column;
            padding: 3vw 2vw;
        }

        .hero-content h1 {
            font-size: 32px;
        }
    }

    /* how it work */
    .how-it-works {
        max-width: 1152px;
        margin: 38px auto 0 auto;
        text-align: left;
        padding: 0 12px;
    }

    .how-it-works h2 {
        font-size: 2.1rem;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
        font-weight: 600;
        margin-bottom: 30px;
        letter-spacing: -1px;
        color: #141420;
    }

    .work-steps {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }

    .step-icon {
        width: 78px;
        height: 78px;
        margin-top: 2px;
        background: #eff1fb;
        border-radius: 50%;
        object-fit: contain;
        flex-shrink: 0;
    }

    .step-title {
        font-family: inherit;
        font-size: 1.37rem;
        font-weight: 600;
        color: #111217;
        margin-bottom: 7px;
        letter-spacing: 0;
    }

    .step-desc {
        font-size: 1.08rem;
        line-height: 1.38;
        color: #202731;
        font-family: inherit;
        margin-bottom: 0;
    }

    @media (min-width: 700px) {
        .how-it-works {
            text-align: center;
            margin-top: 65px;
        }

        .work-steps {
            flex-direction: row;
            gap: 3vw;
            margin-top: 0;
            justify-content: center;
        }

        .step {
            flex-direction: column;
            align-items: center;
            gap: 2px;
            max-width: 330px;
            margin-bottom: 0;
        }

        .step-icon {
            width: 120px;
            height: 120px;
            margin-bottom: 15px;
        }

        .step-title {
            font-size: 1.65rem;
            margin-bottom: 10px;

        }

        .step-desc {
            font-size: 1.14rem;
            margin-bottom: 0;
        }
    }

    @media (max-width : 500px) {
        .how-it-works h2 {
            font-size: 24px;
            text-align: center;
        }

        .step-title {
            font-size: 16px;
            font-weight: 600;
        }

        .step-desc {
            font-size: 16px;
            font-weight: 400;
        }

    }

    /* event parking */
    .event-parking {
        background: #f6faff;
        width: 100%;
        margin-top: 60px;
        padding: 48px 0;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
        overflow-x: hidden;
    }

    .event-parking-inner {
        max-width: 1450px;
        margin: 0 auto;
        display: flex;
        gap: 42px;
        align-items: center;
        justify-content: center;
        padding: 0 32px;
    }

    .event-image {
        flex: 1 1 48%;
        min-width: 320px;
        max-width: 570px;
        display: flex;
        justify-content: flex-end;
    }

    .event-image img {
        width: 98%;
        max-width: 540px;
        border-radius: 9px;
        object-fit: cover;
        box-shadow: 0 2px 38px rgba(62, 114, 214, 0.11);
    }

    .event-info {
        flex: 1 1 53%;
        max-width: 690px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .event-info h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 22px;
        color: #151c2a;
        letter-spacing: -1px;
    }

    .event-desc {
        font-size: 1.2rem;
        color: #232b39;
        margin-bottom: 20px;
        line-height: 1.48;
    }

    .event-list {
        margin: 0 0 23px 0;
        padding: 0;
        list-style: none;
    }

    .event-list li {
        margin-bottom: 9px;
    }

    .event-list a {
        color: #1370e4;
        font-size: 1.11rem;
        text-decoration: underline;
        font-weight: 600;
        transition: color .13s;
    }

    .event-list a:hover {
        color: #034087;
    }

    .event-cta {
        padding: 17px 32px;
        font-size: 1.1rem;
        font-family: inherit;
        font-weight: 700;
        background: #1976f3;
        color: #fff;
        border: none;
        border-radius: 34px;
        cursor: pointer;
        box-shadow: 0 2px 15px rgba(25, 118, 243, 0.14);
        transition: background .1s;
        margin-top: 8px;
    }

    .event-cta:hover,
    .event-cta:focus {
        background: #115ca3;
    }

    @media (max-width: 600px) {
        .event-parking-inner {
            flex-direction: column;
            padding: 0 14px;
            gap: 0;
        }

        .event-image,
        .event-info {
            max-width: 97vw;
            width: 100%;
        }

        .event-image {
            justify-content: center;
            margin-bottom: 24px;
        }

        .event-info h2 {
            font-size: 2.0rem;
        }

        .event-desc {
            font-size: 1rem;
        }
    }

    @media (max-width: 600px) {
        .event-parking {
            padding: 20px 0;
        }

        .event-info {
            align-items: center;
        }

        .event-info h2 {
            font-size: 1.2rem;
        }

        .event-cta {
            font-size: 1rem;
            padding: 13px 10;
        }

        .event-list {
            text-align: center;
        }
    }

    /* airport section */
    .airport-parking {
        width: 100%;
        padding: 56px 0;
        background: #f7fafd;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
        overflow-x: hidden;
    }

    .airport-inner {
        max-width: 1550px;
        margin: 0 auto;
        display: flex;
        gap: 54px;
        align-items: center;
        justify-content: center;
        padding: 0 48px;
    }

    .airport-info {
        flex: 1 1 44%;
        max-width: 540px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .airport-info h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 23px;
        color: #151c2a;
        letter-spacing: -1px;
    }

    .airport-desc {
        font-size: 1.18rem;
        color: #232b39;
        margin-bottom: 22px;
        line-height: 1.5;
    }

    .airport-list {
        margin: 0 0 21px 0;
        padding: 0;
        list-style: none;
    }

    .airport-list li {
        margin-bottom: 9px;
    }

    .airport-list a {
        color: #1370e4;
        font-size: 1.09rem;
        text-decoration: underline;
        font-weight: 600;
        transition: color .12s;
    }

    .airport-list a:hover {
        color: #034087;
    }

    .airport-cta {
        padding: 17px 34px;
        font-size: 1.09rem;
        font-family: inherit;
        font-weight: 700;
        background: #1976f3;
        color: #fff;
        border: none;
        border-radius: 32px;
        cursor: pointer;
        box-shadow: 0 2px 14px rgba(25, 118, 243, 0.13);
        transition: background .1s;
        margin-top: 6px;
    }

    .airport-cta:hover,
    .airport-cta:focus {
        background: #115ca3;
    }

    .airport-images {
        flex: 1 1 53%;
        display: flex;
        gap: 18px;
        max-width: 600px;
        min-width: 290px;
        justify-content: flex-end;
    }

    .airport-images img {
        width: 49%;
        max-width: 345px;
        border-radius: 7px;
        object-fit: cover;
        box-shadow: 0 2px 20px rgba(62, 114, 214, 0.12);
        height: 320px;
        background: #f2f7fd;
    }

    @media (max-width: 950px) {
        .airport-inner {
            flex-direction: column;
            padding: 0 14px;
        }

        .airport-info,
        .airport-images {
            max-width: 97vw;
            width: 100%;
        }

        .airport-images {
            justify-content: center;
            gap: 14px;
        }

        .airport-images img {
            max-width: 48vw;
            height: 180px;
        }

        .airport-info h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 700px) {
        .airport-parking {
            padding: 21px 0;
        }

        .airport-inner {
            padding: 0 6px;
            gap: 10px
        }

        .airport-info h2 {
            font-size: 1.31rem;
        }

        .airport-info {
            align-items: center;
        }

        .airport-inner {
            flex-direction: column-reverse;
        }

        .airport-cta {
            font-size: 1rem;
            padding: 13px 10px;
        }

        .airport-desc {
            font-size: 1rem;
            text-align: center;
        }

        .airport-list a {
            font-size: 1rem;
        }

        .airport-list {
            text-align: center;
        }
    }

    /*  */
    .monthly-parking-section {
        background: #f4f9fd;
        width: 100%;
        min-height: 420px;
        padding: 56px 0 54px 0;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
        overflow-x: hidden;
    }

    .monthly-content {
        max-width: 1480px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 56px;
        padding: 0 48px;
    }

    .monthly-img img {
        display: block;
        width: 34vw;
        max-width: 600px;
        min-width: 260px;
        border-radius: 6px;
        object-fit: cover;
        box-shadow: 0 2px 28px rgba(70, 120, 180, 0.09);
    }

    .monthly-details {
        flex: 1 1 620px;
        max-width: 640px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-left: 28px;
    }

    .monthly-details h2 {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: #141a21;
        letter-spacing: -1px;
    }

    .monthly-desc {
        font-size: 1.18rem;
        color: #232c37;
        margin-bottom: 19px;
        line-height: 1.45;
    }

    .monthly-links {
        list-style: none;
        margin: 0 0 23px 0;
        padding: 0;
    }

    .monthly-links li {
        margin-bottom: 10px;
    }

    .monthly-links a {
        color: #1478e7;
        font-size: 1.09rem;
        font-weight: 600;
        text-decoration: underline;
        transition: color .13s;
    }

    .monthly-links a:hover {
        color: #034087;
    }

    .monthly-cta {
        margin-top: 9px;
        padding: 16px 37px;
        font-size: 1.13rem;
        font-weight: 600;
        background: #1976f3;
        color: #fff;
        border: none;
        border-radius: 36px;
        cursor: pointer;
        box-shadow: 0 2px 14px rgba(20, 101, 243, 0.13);
        transition: background .14s;
    }

    .monthly-cta:hover,
    .monthly-cta:focus {
        background: #155bb5;
    }

    @media (max-width: 950px) {
        .monthly-content {
            flex-direction: column;
            padding: 0 12px;
            gap: 25px;
        }

        .monthly-img img {
            width: 97vw;
            max-width: 98vw;
            height: 170px;
            margin-bottom: 16px;
        }

        .monthly-details {
            margin-left: 0;
            max-width: 98vw;
            width: 100%;
            align-items: flex-start;
        }

        .monthly-details h2 {
            font-size: 1.6rem;
        }

        .monthly-desc {
            font-size: 1rem;
        }

        .monthly-links a,
        .monthly-cta {
            font-size: 1rem;
        }
    }

    @media (max-width: 600px) {
        .monthly-details {
            flex: 1 1 380px;
        }

        .monthly-content {
            gap: 0px;
        }

        .monthly-details {
            align-items: center;
            text-align: center;
        }
    } 



    /*  */
    .find-spot-section {
        width: 100%;
        background: #c7e3ff;
        padding: 65px 0 60px 0;
        overflow-x: hidden;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
    }

    .find-spot-container {
        max-width: 1560px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 38px;
        padding: 0 42px;
    }

    .find-spot-content {
        flex: 1 1 520px;
        min-width: 240px;
        max-width: 540px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .find-spot-content h2 {
        font-size: 2.3rem;
        font-weight: 700;
        color: #171921;
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .find-spot-desc {
        font-size: 1.15rem;
        color: #23313d;
        line-height: 1.48;
        margin-bottom: 31px;
    }

    .find-spot-btn {
        padding: 13px 37px;
        font-size: 1.18rem;
        font-weight: 700;
        color: white;
        background: #1976f3;
        border: none;
        border-radius: 32px;
        cursor: pointer;
        margin-top: 9px;
        box-shadow: 0 2px 13px rgba(25, 118, 243, 0.11);
        transition: background .13s;
    }

    .find-spot-btn:hover,
    .find-spot-btn:focus {
        background: #145cbc;
    }

    .find-spot-image {
        flex: 1 1 670px;
        min-width: 230px;
        max-width: 800px;
        display: flex;
        justify-content: flex-end;
    } 
    @media (max-width:600px){ 
        .find-spot-content {
            flex:  1 1 250px;
        }
        .find-spot-image {
            flex: 1 1 200px;
        }
    }

    .find-spot-image img {
        width: 98%;
        max-width: 750px;
        min-width: 200px;
        height: auto;
        object-fit: contain;
        border-radius: 0;
        background: none;
        user-select: none;
    }

    @media (max-width: 900px) {
        .find-spot-container {
            flex-direction: column;
            gap: 20px;
            padding: 0 10px;
        }

        .find-spot-content {
            align-items: flex-start;
            text-align: left;
        }

        .find-spot-content h2 {
            font-size: 1.5rem;
        }

        .find-spot-desc {
            font-size: 1rem;
        }

        .find-spot-btn {
            font-size: 1.05rem;
            padding: 11px 18px;
        }

        .find-spot-image {
            width: 100%;
            max-width: 98vw;
            margin-top: 16px;
            justify-content: center;
        }

        .find-spot-image img {
            max-width: 97vw;
        }
    }

    .spothero-benefits-section {
        background: #fff;
        width: 100%;
        padding: 62px 0 50px 0;
        overflow-x: hidden;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
    }

    .benefit-row {
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        gap: 42px;
        justify-content: center;
    }

    .benefit-col {
        flex: 1 1 320px;
        max-width: 400px;
        min-width: 200px;
        background: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
    }

    .benefit-col img {
        width: 100%;
        max-width: 330px;
        height: 185px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 1px 8px rgba(62, 114, 214, 0.12);
        background: #f6faff;
        margin-bottom: 22px;
    }

    .benefit-col h3 {
        font-size: 1.44rem;
        font-weight: 700;
        color: #191A2A;
        margin-bottom: 12px;
        letter-spacing: -0.7px;
    }

    .benefit-col p {
        font-size: 1.13rem;
        color: #262b31;
        line-height: 1.44;
        margin-bottom: 18px;
    }

    .benefit-btn {
        padding: 15px 36px;
        font-size: 1.10rem;
        font-weight: 700;
        background: #1677fa;
        color: #fff;
        border: none;
        border-radius: 32px;
        cursor: pointer;
        transition: background .1s;
        box-shadow: 0 2px 13px rgba(22, 119, 250, 0.10);
    }

    .benefit-btn:hover,
    .benefit-btn:focus {
        background: #1158b0;
        outline: none;
    }

    @media (max-width: 1100px) {
        .benefit-row {
            gap: 16px;
        }

        .benefit-col img {
            height: 136px;
        }
    }

    @media (max-width: 720px) {
        .benefit-row {
            flex-direction: column;
            gap: 8px;
            max-width: 99vw;
        }

        .benefit-col {
            max-width: 99vw;
            min-width: 140px;
            margin-bottom: 34px;
        }

        .benefit-col img {
            max-width: 99vw;
            height: 120px;
        }

        .benefit-btn {
            font-size: .97rem;
            padding: 11px 16px;
        }
    }

    .sh-footer {
        width: 100%;
        background: #fff;
        overflow-x: hidden;
        font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
        padding: 0 0 22px 0;
        border-top: 1px solid #F1F4F8;
    }

    .footer-top-row {
        display: flex;
        flex-direction: column;
        max-width: 1550px;
        margin: 0 auto;
        gap: 18px;
        padding: 36px 12px 10px 12px;
    }

    .footer-columns-wrap {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
    }

    .footer-col {
        margin-bottom: 6px;
    }

    .footer-col strong {
        font-size: 1.25em;
        font-weight: 700;
        margin-bottom: 13px;
        display: block;
        color: #191a2a;
    }

    .footer-col ul {
        padding: 0;
        margin: 0; 
        display: flex;
        gap: 30px;
        flex-wrap: wrap; 
    } 


    .footer-col li {
        list-style: none;
        margin-bottom: 6px;
    }

    .footer-col a {
        color: #15294F;
        font-size: 1.08em;
        text-decoration: none;
        transition: color .13s;
    }

    .footer-col a:hover {
        color: #1370e4;
    }

    .footer-socials {
        margin-top: 20px;
        display: flex;
        gap: 19px;
    }

    .footer-socials a {
        font-size: 1.26em;
        color: #233b5e;
        text-decoration: none;
    }

    .footer-bottom-row {
        border-top: 1px solid #EEE;
        font-size: 1em;
        color: #52586a;
        width: 100vw;
        max-width: 1550px;
        margin: 0 auto;
        padding: 16px 12px 0 12px;
        display: flex;
        justify-content: flex-start;
        gap: 12px;
    }

    .footer-bottom-row a {
        color: #1370e4;
        text-decoration: underline;
    } 
    .footer-columns-wrap span {
        font-weight: 700;
    }

    @media (min-width: 900px) {
        .footer-top-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 60px;
            justify-content: flex-start;
        }

        .footer-brand {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 0;
        }

        .footer-columns-wrap {
            flex-direction: column;
            gap: 42px;
            width: 100%;
            justify-content: space-between;
        }

        .footer-col {
            min-width: 170px;
        }
    }

    @media (max-width: 650px) {
        .footer-columns-wrap {
            flex-direction: column;
            gap: 16px;
        }

        .footer-bottom-row {
            flex-direction: column;
            gap: 4px;
            font-size: .97em;
        }

        .footer-brand img {
            height: 42px;
        }

        .footer-apps img {
            height: 28px;
        }

        .footer-parked .footer-count {
            font-size: 1.32em;
        }
    } 

    @media (max-width : 540px) {
        ..footer-columns-wrap {
            flex-direction: column;
        }
        .parking-section .benefit-col img {
            height: 225px;
        } 
        .footer-col ul {
            flex-direction: column;
        }
    }  

/*  */ 

    
.subpage-section {
  background: #f7fafd;
  min-height: 100vh;
  width: 100vw;
  padding: 44px 0 38px 0;
  font-family: '__Plus_Jakarta_Sans_15d946', '__Plus_Jakarta_Sans_Fallback_15d946', 'Plus Jakarta Sans', Arial, sans-serif;
}
.subpage-container {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  border-radius: 11px;
  padding: 30px 18px 16px 18px;
  box-shadow: 0 2px 28px rgba(70, 120, 180, 0.07);
}
.subpage-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #191a2a;
  margin-bottom: 24px;
  text-align: left;
}
.subpage-container p, .faq-answer {
  color: #232b39;
  font-size: 1.13rem;
  margin-bottom: 20px;
  line-height: 1.48;
}
.faq-question {
  font-size: 1.17rem;
  font-weight: 600;
  margin: 21px 0 5px 0;
  color: #1976f3;
}
@media (max-width: 700px) {
  .subpage-container {
    padding: 20px 5px 8px 5px;
    box-shadow: none;
    border-radius: 0;
  }
  .subpage-title {
    font-size: 1.36rem;
    margin-bottom: 19px;
  }
  .subpage-section {
    padding: 24px 0 16px 0;
  }
  .faq-question { font-size: 1.09rem;}
  .subpage-container p, .faq-answer { font-size: 1.01rem; }
}
/* bottom CTA */
.bottom-banner {
    background: #1677fa;
    border: 2px solid #056bef;
    z-index: 9999;
    box-shadow: 0 -1px 3px #56a0fb;
    border-radius: 8px;
    padding: 8px 10px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    bottom: 2px;
    left: 1%;
    width: 92%;
    color: #ffffff;
}

.banner-left img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.banner-middle {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    color: #ffffff;
    font-size: 11px;
}

.banner-middle strong {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    color: #fff;
}

.banner-middle .discount {
    color: #fff;
    background: #28a745;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.banner-right .call-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #28a745;
    color: #fff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
}

/* call  */

.callIcon1 {
    position: relative;
    right: 8px;
    top: 1px;
}

.callIcon1 a._phonebox {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #c60001;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #106e00;
    animation: zoom-in-zoom-out 2s ease-out infinite;
    text-decoration: none;
}

.callIcon1 a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: block;
    padding-bottom: 1px;
    line-height: 25px;
    position: relative;
    top: -1px;
    z-index: 10;
}

.wifi-symbol {
    display: block;
    position: absolute;
    top: 6px;
    left: 12px;
    display: inline-block;
    height: 36px;
}

.wifi-symbol .wifi-circle.first {
    -o-animation-delay: 800ms;
    -moz-animation-delay: 800ms;
    -webkit-animation-delay: 800ms;
    animation-delay: 800ms;
    width: 15px;
    height: 15px;
    left: 16px;
    top: 0px;
}

.wifi-symbol .wifi-circle {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 21.4285714286px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-color: #fff;
    border-style: solid;
    border-width: 2px 2px 0 0;
    -webkit-border-radius: 0 100% 0 0;
    border-radius: 0 100% 0 0;
    opacity: 0;
    -o-animation: wifianimation 2.5s infinite;
    -moz-animation: wifianimation 2.5s infinite;
    -webkit-animation: wifianimation 2.5s infinite;
    animation: wifianimation 2.5s infinite;
}

.wifi-symbol .wifi-circle.second {
    width: 12px;
    height: 12px;
    -o-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    -webkit-animation-delay: 400ms;
    animation-delay: 400ms;
    left: 14px;
    top: 5px;
}

.wifi-symbol .wifi-circle.third {
    width: 8px;
    height: 8px;
    left: 12px;
    top: 10px;
}

.wifi-symbol .fourth {
    width: 30px;
    height: 36px;
    background: url(https://www.redumbrellaholidays.com/Content/images/animatePhone.png) left center no-repeat;
    background-size: 20px;
    display: inline-block;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.3, 1.3);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes wifianimation {

    0% {
        opacity: 1;
    }

    5% {
        opactiy: 1;
    }

    6% {
        opactiy: .8;
    }

    100% {
        opactiy: .8;
    }
}

._txtpuk small {
    font-size: 11px;
}

.stickybottom_uk {
    padding-top: 6px;
    padding-bottom: 4px;
} 
header .benefit-btn {
    padding: 15px 15px;
    font-size: 1.10rem;
    font-weight: 700;
    background: #1677fa;
    color: #fff;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: background .1s;
    box-shadow: 0 2px 13px rgba(22, 119, 250, 0.10);
    text-decoration: none; 
}

@media (min-width:500px) {
    .bottom-banner {
        /*display: none;*/
        width: 96%;;
    } 
}
@media (max-width:500px){
    .benefit-btn {
       display: none;
}