
        :root {
            --primary-color: #021768;
            --secondary-color: #0EACFF;
            --accent-color: #ff6b35;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-muted: #6c757d;
            --radius-xl: 24px;
            --radius: 14px;
            --shadow-sm: 0 4px 12px rgba(2, 23, 104, .06);
            --shadow: 0 10px 30px rgba(2, 23, 104, .10);
            --transition: all .25s ease;
        }

        body {
            color: var(--text-dark);
            background: #fff !important;
            font-family: 'HK Grotesk', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
        }

        .color-gray,
        .bullet-gray>li:before,
        .bullet-gray i {
            color: var(--secondary-color) !important;
            font-weight: 900;
        }

        /* ----- Breadcrumb Card (matches the Cookie Policy page) ----- */
        .card-car {
            background: linear-gradient(135deg, #021768 0%, #021768 100%);
            color: #fff;
            padding: 27px 24px;
            margin: 100px auto 48px;
            border-radius: 36px;
            box-shadow: var(--shadow);
        }

        .pages {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contnt {
            font-size: 14px;
            color: rgba(255, 255, 255, .85);
        }

        .contnt a {
            color: rgba(255, 255, 255, .85);
            text-decoration: none;
            margin: 0 8px;
            transition: var(--transition);
        }

        .contnt a:hover {
            color: #fff;
        }

        .card-car .page-title {
            color: var(--secondary-color);
            font-weight: 600;
            margin: 0;
            font-size: 2rem;
        }

        .card-car .lead {
            color: #fff;
            opacity: .95;
            margin: 6px 0 0;
            font-size: 17px;
            font-weight: 200;
            line-height: 1rem;
        }

        /* ----- Page wrapper ----- */
        .light-wrapper {
            background: var(--light-bg);
            padding: 56px 0 88px;
        }

        /* ----- Contact section layout ----- */
        .contact-card {
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .contact-card .left {
            padding: 32px;
            height: 100%;
        }

        .contact-card .right {
            padding: 32px;
        }

        /* ----- Info items ----- */
        .info-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px dashed rgba(2, 23, 104, .12);
        }

        .info-item:last-child {
            border-bottom: 0;
        }

        .info-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .info-icon img {
            width: 22px;
            height: 22px;
        }

        /* ----- Section titles ----- */
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .section-sub {
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        /* ----- Pro form styling ----- */
        .form-card {
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow);
            padding: 28px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        /* floating labels */
        .f-field {
            position: relative;
        }

        .f-input {
            width: 100%;
            padding: 14px 16px 14px 44px;
            border: 1.5px solid rgba(2, 23, 104, .12);
            border-radius: 12px;
            transition: var(--transition);
            outline: none;
            background: #fff;
        }

        .f-input:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 4px rgba(14, 172, 255, .12);
        }

        .f-label {
            position: absolute;
            left: 44px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            transition: var(--transition);
        }

        .f-input:focus+.f-label,
        .f-input:not(:placeholder-shown)+.f-label {
            top: 0;
            transform: translateY(-60%);
            font-size: 12px;
            background: #fff;
            padding: 0 6px;
            color: var(--secondary-color);
        }

        /* field icon */
        .f-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            opacity: .7;
        }

        /* textarea */
        textarea.f-input {
            min-height: 120px;
            resize: vertical;
            padding-left: 16px;
        }

        textarea.f-input+.f-label {
            left: 16px;
        }

        /* radio group */
        .radio-wrap {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 8px;
        }

        .radio-card {
            border: 1.5px solid rgba(2, 23, 104, .12);
            border-radius: 12px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition);
            background: #fff;
        }

        .radio-card input {
            accent-color: var(--secondary-color);
        }

        .radio-card:hover {
            border-color: var(--secondary-color);
            box-shadow: 0 6px 16px rgba(14, 172, 255, .12);
        }

        /* submit */
        .btn-send {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-color);
            color: #fff;
            border: 0;
            padding: 12px 22px;
            border-radius: 999px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-send:hover {
            background: #0b1080;
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(2, 23, 104, .2);
        }

        .req-note {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* alerts alignment */
        .alert {
            border-radius: 12px;
        }

        /* complementary block */
        .assist-card {
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            padding: 26px;
        }

        /* responsive */
        @media (max-width: 991.98px) {
            .radio-wrap {
                grid-template-columns: 1fr;
            }

            .card-car {
                margin: 98px 0px 26px;
                border-radius: 20px;
            }

            .contact-card .left,
            .contact-card .right {
                padding: 22px;
            }

            .form-card {
                padding: 22px;
            }

            .assist-card {
                padding: 20px;
            }

            .page-title {
                font-size: 24px;
                line-height: 2.8rem;
                margin-bottom: 1rem;
            }

            .card-car .lead {
                color: #fff;
                opacity: .95;
                margin: 0px 0 0;
                font-size: 13px !important;
                line-height: 1.4 !important;
            }

        }

        @media (max-width: 767px) {
            .container {
                padding-right: 0px !important;
                padding-left: 0px !important;
            }
        }

        hr {
            border: 0;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid rgb(255 255 255 / 37%) !important;
            padding-top: 3.5rem;
            margin-bottom: 3.5rem;
        }
    