    @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

    :root {
        font-family: "Ubuntu", sans-serif;
        color: #f4fbff;
        --bg-start: #1c9ad7;
        --bg-mid: #1d7fd0;
        --bg-end: #175ac1;
        --card-bg: rgba(255, 255, 255, 0.08);
        --card-border: rgba(255, 255, 255, 0.15);
        --muted: rgba(244, 251, 255, 0.75);
        --highlight: #8ee0ff;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        min-height: 100vh;
        /* background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 40%),
            radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 35%),
            linear-gradient(135deg, var(--bg-start), var(--bg-mid) 45%, var(--bg-end)); */
        display: flex;
        justify-content: center;
        padding: 40px 20px 0px;
        font-family: "Ubuntu", sans-serif;
        background: radial-gradient(circle at 12% 22%, rgba(143, 230, 210, 0.15), transparent 18%), radial-gradient(circle at 92% 80%, rgba(255, 255, 255, 0.04),
                transparent 20%), linear-gradient(120deg, #2bc7b0 0%, #1a82bb 35%, #3972b0 100%);
        flex-direction: column;
        width: 100%;
    }

    .page {
        width: min(1300px, 100%);
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin: auto;
    }

    .badge {
        align-self: center;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 999px;
        padding: 8px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    }

    .logo {
        align-self: center;
        border-radius: 16px;
        padding: 14px 28px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
    }

    header h1 {
        font-size: clamp(2.4rem, 4vw, 3.8rem);
        font-weight: 300;
        line-height: 1.5;
        margin-bottom: 18px;
        font-size: 75px;
        font-family: "Ubuntu", sans-serif;
    }

    header p {
        max-width: 620px;
        margin: 0 auto;
        font-size: 28px;
        color: rgb(244 251 255 / 90%);
        line-height: 1.6;
        font-weight: 300;
        font-style: normal;
    }

    .cta {
        margin-top: 20px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 55px;
        border-radius: 999px;
        border: none;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 0.04em;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
        font-family: "Ubuntu", sans-serif;
        font-weight: 300;
        font-style: normal;
        margin: auto;
    }

    .cta a {
        color: #fff;
        text-decoration: underline;
        position: relative;
        font-weight: 500;
    }

    .section-title {
        text-transform: capitalize;
        letter-spacing: 1px;
        font-size: 50px;
        color: #fff;
        font-weight: 300;
        font-style: normal;
        margin-top: 55px;
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .card {
        background: var(--card-bg);
        border-radius: 18px;
        padding: 26px;
        text-align: left;
        border: 1px solid var(--card-border);
        backdrop-filter: blur(12px);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: 0 9px 10px rgb(10 23 71 / 19%)
    }

    .icon {
        width: 55px;
        height: 55px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.18);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        font-size: 1.4rem;
        color: #0f4fa5;
    }

    .card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 400;
        margin-top: 8px;
    }

    .card p {
        font-size: 0.99rem;
        color: var(--muted);
        line-height: 1.5;
    }

    .stay {
        margin-top: 20px;
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 600;
    }

    footer {
        display: flex;
        flex-direction: row;
        gap: 24px;
        border-top: 1px solid #ffffff91;
        margin-top: 80px;
        justify-content: space-between;
        align-items: center;
    }

    .benefits {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .benefits .chip {
        min-width: 180px;
        padding: 14px 20px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 15px 35px rgba(10, 23, 71, 0.25);
    }

    .chip span {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .chip strong {
        font-size: 1rem;
        color: #fff;
    }

    .copyright {
        margin-top: 40px;
        font-size: 0.85rem;
        color: var(--muted);
    }



    .card .icon svg {
        color: #fff;
        font-size: 28px;
        width: 28px;
    }

    p.section-subtext {
        font-size: 20px;
        margin-top: 20px;
        color: #f5f5f5d4;
        margin-bottom: 80px;
    }

    .card:nth-child(odd) .icon {
        background: linear-gradient(135deg, #3ad4a3 0%, #1aa0c8 40%, #1c6fd1 100%);
    }

    p.stay-connect {
        font-size: 32px;
        font-weight: 300;
        margin-top: 18px;
        margin-bottom: 50px;
    }

    .card:nth-child(even) .icon {
        background: linear-gradient(135deg, #1c6fd1 0%, #1aa0c8 40%, #3ad4a3 100%);
    }

    .container-block {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .card-bottom {
        border-radius: 10px;
        width: 26%;
        padding: 20px;
        text-align: center;
        color: white;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
    }

    .icon-bt {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        border-radius: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background: linear-gradient(135deg, #1c6fd1 0%, #1aa0c8 40%, #3ad4a3 100%);
        align-items: center;
        margin: auto;
        margin-bottom: 20px;
    }

    .container-block h2 {
        font-weight: 300;
        font-size: 25px;
    }

    .container-block p {
        margin-top: 15px;
        color: #f9f9f9a8;
    }

    .card-bottom:nth-child(odd) .icon-bt {
        background: linear-gradient(135deg, #3ad4a3 0%, #1aa0c8 40%, #1c6fd1 100%);
    }

    .logo.bottom-logo img {
        width: 200px;
    }

    @media (max-width: 640px) {
        body {
            padding: 30px 16px 60px;
        }

        .grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .card {
            padding: 22px;
        }

        .benefits {
            flex-direction: column;
            align-items: stretch;
        }

        .logo {
            font-size: 1.1rem;
            padding: 12px 20px;
        }

        .logo img {
            width: 250px;
        }

        header h1 {
            font-size: 35px;
        }

        header p {
            font-size: 20px;
        }

        .section-title {
            font-size: 35px;
            font-weight: 300;
            margin-top: 25px;
        }

        .container-block {
            display: contents;
        }

        .card-bottom {
            width: 100%;
        }

        footer {
            gap: 0px;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            order: 3;
        }
        footer {
            flex-direction: column;
        }
        footer ul {
            order: 2;
        }

    }

    .cta a span {
    position: absolute;
    left: -30px;
    top: -2px;
}
header.coming-soon p {
    font-size: 20px;
    max-width: 80%;
}

footer ul {
    list-style: none;
    display: inline-flex;
    gap: 8px;
}
footer ul a {
    color: #fff;
    text-decoration: none;
    border-right: 1px solid;
    padding-right: 8px;
}
footer ul li:last-child a {
    border-right: none;
}
ul.privacy-policy-page {
    list-style: none;
    text-align: left;
    line-height: 1.6;
}
ul.privacy-policy-page li {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 18px;
}

article.card a {
    color: #fff;
    text-decoration: none;
}
header.contact-us h1 {
    font-size: 40px;
}
header.contact-us p {
    font-size: 16px;
    margin-top: 30px;
    color: #fff;
    font-weight: 400;
}
header.contact-us a {
    color: #fff;
    font-weight: 600;
}