   :root {
            --text-primary: #1d1d1f;
            --text-secondary: #6e6e73;
            --border: #e7b645;
            --accent: #0071e3;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            color: var(--text-primary);
            padding: 72px 24px;
            line-height: 1.6;

        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .logo img {
            height: 100px;
        }

        .container {
            max-width: 50vw;
            max-height: 0vh;
            margin: auto;
        }

        h1 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .intro {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .step {
            margin-bottom: 56px;
        }

        .step-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: #1d1d1f;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .step-desc {
            font-size: 1.25rem;
            color: #3a3a3c;
            margin-bottom: 32px;
        }

        .step-view {
            display: none;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: white;
            margin: 12px 0 48px 0;
            padding: 28px 32px 56px 32px;
            min-height: 40vh;
            text-align: left;
            z-index: 1;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            /* opacity: 0; */
            transform: translateX(0);
        }

        .step-view.active {
            display: block;
            opacity: 1;
            transform: translateX(0);
            z-index: 2;
        }

        .step-view.slide-out-left {
            opacity: 0;
            transform: translateX(-100vw);
            z-index: 1;
        }

        .step-view.slide-in-right {
            display: block;
            opacity: 1;
            transform: translateX(100vw);
            z-index: 2;
        }

        .step-view.slide-in-right.active {
            transform: translateX(0);
        }

        .data-block,
        .boxrental {
            font-size: 1.1rem;
        }

        .label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .value {
            font-size: 16px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .address p {
            margin-bottom: 4px;
        }

        .signature {
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: italic;
            color: var(--text-secondary);
            padding: 16px 0;
        }

        button {
            /* background: var(--accent); */
            color: var(--border);
            font-size: 15px;
            padding: 14px 28px;
            /* border: 1px solid var(--border); */
            border: none;
            /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); */
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.2s ease;
            display: block;
            margin-top: 40px;
            background: #ffffff;
        }

        button:hover {
            background: var(--border);
            color: white;
        }

        .hidden {
            display: none;
        }

        .boxrental {
            font-size: 14px;
            color: var(--text-primary);
            background: #f5f5f7;
            padding: 16px;
            margin-top: 12px;
            border-radius: 8px;
        }

        @keyframes fadeInOut {
            0% {
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        .fade-in-out {
            animation: fadeInOut 2.5s forwards;
        }

        .centered-intro {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 50vh;
            text-align: center;
            margin: 32px 0 48px 0;
            padding: 48px 32px 56px 32px;
        }

        #introTitle {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: #1d1d1f;
            margin-bottom: 18px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        #introText {
            font-size: 1.35rem;
            color: #3a3a3c;
            margin-bottom: 0;
            max-width: 600px;
        }

        .slide-down {
            transform: translateY(-60px);
            opacity: 0;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-down.show {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-up {
            transform: translateY(60px);
            opacity: 0;
            pointer-events: none;
        }

        .slide-up.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .next-btn,
        .prev-btn {
            margin: 24px 8px 0 0;
            display: inline-block;
            font-size: 1.1rem;
            padding: 14px 32px;
            border-radius: 8px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-actions {
            display: flex;
            /* justify-content: flex-end; */
            justify-content: space-between;
            animation: fadeIn 0.5s ease-out;
            padding-bottom: 40px;
        }

        .multi-step-wrapper {
            position: relative;
            min-height: 40vh;
        }

        .address-details {
            display: flex;
            flex-direction: row;
            justify-content: space-between;

        }

        .ad {
            border: 1px solid var(--border);

        }

        .address-panel {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            margin: 24px 0;
        }

        .address-card {
            background: #f5f7fa;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 20px 28px;
            min-width: 220px;
            box-shadow: 0 2px 8px rgba(31, 38, 135, 0.06);
        }

        .address-label {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .address-value {
            font-size: 1.05rem;
            color: #1d1d1f;
            word-break: break-word;
        }

        .address-value p {
            margin: 0;
            padding: 0;
        }

        .address-arrow {
            font-size: 2.2rem;
            color: var(--accent);
            font-weight: bold;
        }

        .myClass p:first-child {
            margin: 0 0 32px 0;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.2;
            position: relative;
        }

        .myClass p:first-child::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #06070d, #ded9db);
            border-radius: 2px;
        }

        .myClass p:first-child b {
            font-weight: inherit;
        }

        .address-arrow::after {
            content: '\2192';
            /* → */
            display: inline-block;
        }

        @media (max-width: 900px) {
            .myClass p:first-child {
                font-size: 20px;
            }

            .address-panel {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .address-arrow {
                font-size: 1.5rem;
                margin: 0 auto;
            }

            .address-arrow::after {
                content: '\2193';
                /* ↓ */
            }
        }

        /* Switch styles */
        .switch-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
        }

        .switch-label input[type="checkbox"] {
            display: none;
        }

        .switch-slider {
            width: 44px;
            height: 24px;
            background: #e5e5ea;
            border-radius: 12px;
            position: relative;
            transition: background 0.2s;
        }

        .switch-slider:before {
            content: '';
            position: absolute;
            left: 4px;
            top: 4px;
            width: 16px;
            height: 16px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            transition: left 0.2s;
        }

        .switch-label input[type="checkbox"]:checked+.switch-slider {
            background: var(--border);
        }

        .switch-label input[type="checkbox"]:checked+.switch-slider:before {
            left: 24px;
        }

        .switch-text {
            margin-left: 8px;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .switch-container {
            display: flex;
            align-items: center;
            justify-content: end;
            margin-top: 16px;
        }

        @media (max-width: 900px) {
            body {
                padding: 24px 4px;
            }

            .container {
                max-width: 100vw;
                max-height: 100vh;
                padding: 0;
            }

            header {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }

            .logo img {
                height: 40px;
            }

            .step-view {
                margin: 0;
                padding: 16px 4px 32px 4px;
                min-height: 60vh;
            }

            .address-panel {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .address-card {
                padding: 14px 10px;
            }

            .address-arrow {
                font-size: 1.5rem;
                margin: 0 auto;
            }

            .centered-intro {
                padding: 24px 8px 32px 8px;
                min-height: 30vh;
            }

            .step-title {
                font-size: 1.3rem;
            }

            .step-desc {
                font-size: 1rem;
            }

            .move-date-highlight {
                font-size: 1rem;
                padding: 8px 12px;
            }

            .switch-label {
                font-size: 1rem;
            }

            .signature {
                padding: 10px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0;
            }

            .step-view {
                padding: 8px 2px 16px 2px;
            }

            .centered-intro {
                padding: 12px 2px 16px 2px;
            }
        }

        /* Radio button styles */
        .radio-container {
            display: flex;
            gap: 16px;
            margin-top: 12px;
        }

        .radio-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            position: relative;
        }

        .radio-label input[type="radio"] {
            display: none;
        }

        .radio-custom {
            width: 22px;
            height: 22px;
            border: 2px solid var(--border);
            border-radius: 50%;
            display: inline-block;
            position: relative;
            background: #fff;
            transition: border-color 0.2s;
        }

        .radio-label input[type="radio"]:checked+.radio-custom {
            border-color: var(--accent);
        }

        .radio-label input[type="radio"]:checked+.radio-custom::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 5px;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            display: block;
        }

        .radio-label input[type="radio"]:focus+.radio-custom {
            outline: 2px solid var(--accent);
        }

        @media (max-width: 900px) {
            .radio-label {
                font-size: 1rem;
            }

            .radio-custom {
                width: 18px;
                height: 18px;
            }
        }

        /* Button choice styles */
        .button-choice-container {
            display: flex;
            gap: 16px;
            margin-top: 12px;
        }

        .choice-btn {
            flex: 1;
            padding: 16px;
            margin-top: 0;
            font-size: 1.1rem;
            font-weight: 500;
            color: #1d1d1f;
            background: #f5f7fa;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .choice-btn:hover {
            background: var(--border);
            color: white;
        }

        .choice-btn.active {
            background: var(--border);
            color: white;
            transform: scale(1.05);
        }

        /* Box rental Yes/No button styles */
        .button-choice-container {
            display: flex;
            gap: 24px;
            align-items: center;
            justify-content: center;
            /* margin-top: 18px; */
        }

        .choice-btn {
            background: #f5f5f7;
            color: var(--text-primary);
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1.15rem;
            font-weight: 600;
            /* padding: 14px 36px; */
            cursor: pointer;
            transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 8px rgba(31, 38, 135, 0.04);
        }

        .choice-btn.active,
        .choice-btn:focus {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            box-shadow: 0 4px 16px rgba(0, 113, 227, 0.10);
        }

        .choice-btn:hover {
            background: #e7b645;
            color: #fff;
            border-color: #e7b645;
        }

        .choice-btn.no-active {
            background: #e53935;
            color: #fff;
            border-color: #e53935;
            box-shadow: 0 4px 16px rgba(229, 57, 53, 0.10);
        }

        .choice-btn.no-active:hover {
            background: #b71c1c;
            border-color: #b71c1c;
        }

        .button-choice-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            justify-content: center;
        }

        .button-choice {
            display: flex;
            flex-direction: row;
            gap: 24px;
            align-items: center;
            justify-content: center;
            margin: 32px 0 24px 0;
            flex-wrap: wrap;
            width: 100%;
        }

        .insurance-card {
            background: #f5f7fa;
            border: 2.5px solid #e7b645;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(31, 38, 135, 0.06);
            padding: 32px 36px 28px 36px;
            min-width: 220px;
            max-width: 320px;
            flex: 1 1 220px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
            outline: none;
            position: relative;
        }

        .insurance-card:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px #0071e355;
        }

        .insurance-card.selected {
            border-color: var(--accent);
            background: #eaf4ff;
            box-shadow: 0 8px 32px rgba(0, 113, 227, 0.10);
            transform: scale(1.04);
        }

        .insurance-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 8px;
        }

        .insurance-desc {
            font-size: 1.05rem;
            color: #3a3a3c;
            opacity: 0.85;
        }

        .insurance-card::after {
            content: '';
            display: none;
            position: absolute;
            top: 18px;
            right: 18px;
            width: 28px;
            height: 28px;
            background: url('data:image/svg+xml;utf8,<svg fill="%230071e3" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="12" fill="%23eaf4ff"/><path d="M17 9l-5.2 5.2-2.8-2.8" stroke="%230071e3" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>') no-repeat center center/contain;
        }

        .insurance-card.selected::after {
            display: block;
        }

        #insuranceNextBtn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        @media (max-width: 900px) {
            .choice-btn {
                font-size: 1rem;
                padding: 12px 18px;
            }

            .button-choice-container {
                gap: 12px;
            }
        }


        /* Insurance step elite UI */
        .insurance-options {
            display: flex;
            gap: 32px;
            justify-content: center;
            margin: 32px 0 24px 0;
            flex-wrap: wrap;
        }

        .insurance-card {
            background: #f5f7fa;
            border: 2.5px solid #e7b645;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(31, 38, 135, 0.06);
            padding: 32px 47px 28px 36px;
            min-width: 220px;
            max-width: 320px;
            flex: 1 1 220px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
            outline: none;
            position: relative;
        }

        .insurance-card:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px #0071e355;
        }

        .insurance-card.selected {
            border-color: var(--accent);
            background: #eaf4ff;
            box-shadow: 0 8px 32px rgba(0, 113, 227, 0.10);
            transform: scale(1.04);
        }

        .insurance-title {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 8px;
        }

        .insurance-desc {
            font-size: 1.05rem;
            color: #3a3a3c;
            opacity: 0.85;
        }

        .insurance-card::after {
            content: '';
            display: none;
            position: absolute;
            top: 18px;
            right: 18px;
            width: 28px;
            height: 28px;
            background: url('data:image/svg+xml;utf8,<svg fill="%230071e3" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="12" fill="%23eaf4ff"/><path d="M17 9l-5.2 5.2-2.8-2.8" stroke="%230071e3" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>') no-repeat center center/contain;
        }

        .insurance-card.selected::after {
            display: block;
        }

        #insuranceNextBtn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .inputFieldContainer {
            height: 50px;
            margin-bottom: 10px;
        }

        #signaturePad.signed {
            border: 2.5px solid #67e26b !important;
            transition: border-color 1s ease;
        }

        .pay-btn {
            background: #0071e3;
            color: #fff;
            margin: 24px 8px 0 0;
            display: inline-block;
            font-size: 1.1rem;
            padding: 14px 32px;
            border-radius: 8px;
            border: none;
        }

        .breakdownDeposit{
            width: 100%;
        }
        /* Clear All button styles */
        #clearLocalStorageBtn {
            position: fixed;
            top: 18px;
            right: 24px;
            z-index: 2000;
            background: #e53935;
            color: #fff;
            border: none;
            border-radius: 7px;
            padding: 8px 18px;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(31, 38, 135, 0.10);
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .arrow {
            animation: glow 1.5s infinite;
            font-weight: 300;
            letter-spacing: -2px;
        }

        .arrow:nth-child(1) {
            animation-delay: 0s;
        }

        .arrow:nth-child(2) {
            animation-delay: 0.3s;
        }

        .arrow:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes glow {

            0%,
            80%,
            100% {
                color: white;
                text-shadow: none;
            }

            40% {
                color: #e7b645;
                text-shadow: 0 0 10px #e7b645, 0 0 20px #e7b645;
            }
        }

                .restart-form-btn {
                    background: #fff;
                    color: #1769aa;
                    border: 2px solid #1769aa;
                    border-radius: 6px;
                    padding: 5px 5px;
                    font-size: 1rem;
                    font-weight: 500;
                    cursor: pointer;
                    box-shadow: 0 2px 8px rgba(23, 105, 170, 0.08);
                    transition: background 0.2s, color 0.2s, border-color 0.2s;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }
        
                .restart-form-btn .restart-form-icon {
                    transition: color 0.2s;
                    color: #1769aa;
                }
        
                .restart-form-btn:hover,
                .restart-form-btn:focus {
                    background: #1769aa;
                    color: #fff;
                    border-color: #1769aa;
                }
        
                .restart-form-btn:hover .restart-form-icon,
                .restart-form-btn:focus .restart-form-icon {
                    color: #fff;
                }