:root {
            --orange: #f7941d;
            --orange-dark: #e8830a;
            --navy: #2b2660;
            --navy-2: #332c72;
            --text: #2c2c3a;
            --gray-bg: #f4f4f6;
            --gray-line: #e3e3e8;
            --muted: #6b6b78;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
            color: var(--text);
            line-height: 1.5;
            background: #fff;
        }

        h1,
        h2,
        h3,
        h4 {
            margin: 0;
            font-weight: 800;
        }

        p {
            margin: 0;
        }

        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .wrap {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-weight: 700;
            padding: 12px 26px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            letter-spacing: .3px;
            transition: background .2s ease, transform .15s ease;
        }

        .btn:hover {
            background: var(--orange-dark);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--navy);
            color: var(--navy);
        }

        /* Header */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-line);
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 50;
        }

        .logo {
            display: flex;
            align-items: baseline;
            gap: 2px;
            font-weight: 800;
            font-size: 24px;
        }

        .logo .my {
            color: var(--navy);
        }

        .logo .rto {
            background: var(--orange);
            color: #fff;
            padding: 2px 8px;
            border-radius: 4px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        nav .nav-links {
            display: flex;
            gap: 30px;
            font-weight: 600;
            font-size: 14px;
            color: var(--navy);
        }

        nav .nav-links span.chev {
            font-size: 10px;
            color: var(--orange);
            margin-left: 4px;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger svg {
            display: block;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #fff;
            position: relative;
            left: 0;
            right: 0;
            top: 0;
            z-index: 40;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mnav-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-weight: 700;
            font-size: 13.5px;
            letter-spacing: .5px;
            color: var(--orange);
            border-top: 1px solid var(--gray-line);
            background: #fafafb;
            cursor: pointer;
        }

        a.mnav-row {
            color: var(--muted);
            font-weight: 600;
            letter-spacing: 0;
            background: #fff;
        }

        .mnav-chev {
            font-size: 14px;
            transition: transform .2s ease;
        }

        .mnav-parent.open .mnav-chev {
            transform: rotate(180deg);
        }

        .mnav-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease;
            background: #fff;
        }

        .mnav-submenu.open {
            max-height: 300px;
        }

        .mnav-sub-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px 14px 34px;
            font-size: 14.5px;
            font-weight: 600;
            color: var(--navy);
            border-top: 1px solid var(--gray-line);
        }

        .mnav-sub-row .mnav-arrow {
            color: var(--orange);
            font-size: 16px;
        }

        .mnav-sub-row.active {
            background: var(--gray-bg);
        }

        /* Hero heading */
        .hero {
            text-align: center;
            padding: 56px 24px 30px;
        }

        .hero h1 {
            font-size: 38px;
            color: var(--orange);
        }

        .hero p.tagline {
            font-size: 18px;
            color: var(--navy);
            font-weight: 700;
            margin-top: 10px;
        }

        /* Services section */
        .services-section {
            background: var(--gray-bg);
            padding: 50px 0 60px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr 1.1fr;
            gap: 40px;
        }

        .services-intro h2 {
            font-size: 30px;
            color: var(--navy);
            line-height: 1.2;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: var(--orange);
            margin: 14px 0 22px;
            border-radius: 2px;
        }

        .services-col h3 {
            font-size: 19px;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .services-col h3 .icon-badge {
            width: 46px;
            height: 46px;
            border-radius: 6px;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .services-col li {
            padding: 8px 0;
            border-top: 1px solid var(--gray-line);
            color: var(--text);
            font-size: 15px;
            position: relative;
            padding-left: 16px;
        }

        .services-col li:before {
            content: "–";
            position: absolute;
            left: 0;
            color: var(--navy);
            font-weight: 700;
        }

        /* Icon strip */
        .icon-strip {
            padding: 56px 0 20px;
        }

        .icon-strip-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            text-align: center;
        }

        .icon-strip-grid .item {
            padding: 0 10px;
        }

        .icon-strip-grid .icon-circle {
            width: 78px;
            height: 78px;
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-strip-grid .label {
            font-size: 14px;
            color: var(--text);
        }

        /* Consultant banner */
        .consultant-title {
            text-align: center;
            padding: 50px 24px 40px;
        }

        .consultant-title h2 {
            font-size: 24px;
            color: var(--navy);
        }

        .consultant-title p {
            font-size: 15px;
            color: var(--muted);
            margin-top: 6px;
            font-weight: 600;
        }

        /* Feature grid (simple/fast/hassle-free etc) */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px 50px;
            padding-bottom: 70px;
        }

        .feature {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .feature .ficon {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
        }

        .feature h4 {
            font-size: 17px;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .feature p {
            font-size: 14px;
            color: var(--muted);
        }

        /* Dark banner */
        .dark-banner {
            background: var(--navy);
            color: #fff;
            padding: 60px 0;
        }

        .dark-banner .eyebrow {
            text-align: center;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .5px;
            color: #c9c6e8;
            margin-bottom: 36px;
        }

        .dark-banner .my-rto-label {
            font-weight: 800;
            font-size: 16px;
        }

        .dark-banner .small-divider {
            width: 44px;
            height: 3px;
            background: var(--orange);
            margin: 12px 0 22px;
        }

        .dark-banner h2 {
            font-size: 32px;
            line-height: 1.25;
            max-width: 760px;
            font-weight: 800;
        }

        .dark-banner .sub {
            display: inline-block;
            margin-top: 26px;
            background: #e9e9ec;
            color: #1c1c2e;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 15px;
        }

        /* Book appointment strip */
        .book-strip {
            padding: 60px 24px 20px;
            text-align: center;
        }

        .book-strip p {
            font-size: 18px;
            color: var(--text);
        }

        .book-strip a.underline {
            text-decoration: underline;
            font-weight: 700;
            color: var(--text);
        }

        .trio {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 26px;
            font-weight: 700;
            color: var(--navy);
            font-size: 17px;
        }

        .trio span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* How it works */
        .how-section {
            background: var(--gray-bg);
            margin: 60px 24px;
            border-radius: 6px;
            padding: 50px 60px 60px;
        }

        .how-section h2 {
            font-size: 32px;
            color: var(--navy);
        }

        .how-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px 60px;
            margin-top: 40px;
        }

        .how-step {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .how-step .num {
            font-size: 30px;
            font-weight: 800;
            color: var(--navy);
            min-width: 56px;
        }

        .how-step .content h4 {
            font-size: 17px;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .how-step .content p {
            font-size: 14.5px;
            color: var(--text);
            margin-bottom: 14px;
        }

        .how-step .btn {
            display: block;
            width: fit-content;
            margin-bottom: 10px;
        }

        .how-step .or {
            font-size: 12px;
            color: var(--muted);
            font-weight: 700;
            margin: 6px 0;
        }

        .how-step .illus {
            width: 120px;
            height: 100px;
            flex-shrink: 0;
        }

        .how-step.center-illus {
            align-items: center;
        }

        /* Stats */
        .stats-badge {
            max-width: 520px;
            margin: 70px auto 0;
            border: 2px solid var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            font-weight: 800;
            font-size: 18px;
            color: var(--navy);
        }

        .stats-badge .logo {
            font-size: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            text-align: center;
            padding: 40px 24px 70px;
            max-width: 900px;
            margin: 0 auto;
        }

        .stats-grid .num {
            font-size: 42px;
            font-weight: 800;
            color: #c9c9cf;
        }

        .stats-grid .label {
            font-size: 12.5px;
            letter-spacing: 1px;
            font-weight: 700;
            color: var(--navy);
            margin-top: 6px;
        }

        /* CTA banner */
        .cta-banner {
            background: var(--navy);
            padding: 34px 0;
        }

        .cta-banner .wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cta-banner h3 {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
        }

        /* Footer */
        footer {
            background: #fbfbfc;
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1.3fr 1.1fr;
            gap: 30px;
            padding-bottom: 40px;
        }

        .footer-grid .logo {
            font-size: 20px;
            margin-bottom: 6px;
        }

        .footer-tag {
            color: var(--orange);
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 14px;
        }

        .footer-desc {
            font-size: 13.5px;
            color: var(--muted);
            line-height: 1.7;
        }

        .dmca {
            margin-top: 16px;
            background: #111;
            color: #fff;
            font-size: 10px;
            padding: 4px 8px;
            display: inline-block;
            border-radius: 3px;
        }

        footer h5 {
            font-size: 15px;
            color: var(--navy);
            margin-bottom: 16px;
            letter-spacing: .5px;
        }

        footer .footer-links li {
            padding: 6px 0;
            font-size: 14px;
            color: var(--text);
            position: relative;
            padding-left: 16px;
        }

        footer .footer-links li:before {
            content: "–";
            position: absolute;
            left: 0;
            color: var(--navy);
        }

        .services-foot-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .services-foot-item .sicon {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .services-foot-item p {
            font-size: 14px;
            color: var(--text);
        }

        .call-box {
            border: 2px solid var(--orange);
            border-radius: 6px;
            padding: 14px 20px;
            text-align: center;
            margin-bottom: 20px;
        }

        .call-box p {
            font-size: 12px;
            color: var(--muted);
            font-weight: 700;
        }

        .call-box .num {
            font-size: 17px;
            color: var(--orange);
            font-weight: 800;
            margin-top: 4px;
        }

        footer .contact h5 {
            margin-top: 0;
        }

        footer .contact p {
            font-size: 14px;
            margin: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
        }

        .social {
            display: flex;
            gap: 14px;
            margin-top: 16px;
        }

        .social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid var(--gray-line);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-line);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--muted);
        }

        .footer-bottom a {
            margin-left: 18px;
            color: var(--muted);
        }

        /* CTA mobile actions - hidden on desktop */
        .cta-mobile-actions {
            display: none;
        }

        .cta-icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .call-now-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        /* Accordion chevron hidden by default (desktop shows plain list) */
        .acc-chev {
            display: none;
        }

        .acc-toggle {
            cursor: default;
        }

        @media(max-width:900px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .icon-strip-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .how-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .cta-banner .wrap {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            nav .nav-links {
                display: none;
            }
        }

        /* ===== Mobile phone layout (matches reference mock) ===== */
        @media(max-width:640px) {
            .wrap {
                padding: 0 18px;
            }

            /* Header */
            header {
                padding: 14px 0;
            }

            .logo {
                font-size: 20px;
            }

            nav .btn {
                display: none;
            }

            .hamburger {
                display: block;
            }

            /* Hero */
            .hero {
                text-align: left;
                padding: 28px 18px 20px;
            }

            .hero h1 {
                font-size: 24px;
                line-height: 1.25;
            }

            .hero p.tagline {
                font-size: 14px;
                margin-top: 8px;
            }

            /* Services -> accordion */
            .services-section {
                padding: 24px 0 30px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .services-intro .btn {
                display: block;
                text-align: center;
            }

            .services-intro h2 {
                font-size: 24px;
            }

            .services-col.accordion {
                background: #fff;
                border-radius: 6px;
                overflow: hidden;
            }

            .acc-toggle {
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 14px;
                margin: 0;
                padding: 16px;
                background: var(--gray-bg);
            }

            .acc-toggle .icon-badge {
                background: transparent;
                width: auto;
                height: auto;
            }

            .acc-title {
                flex: 1;
                font-size: 15px;
            }

            .acc-chev {
                display: inline-block;
                font-size: 24px;
                color: var(--muted);
                font-weight: 400;
                transform: rotate(0deg);
                transition: transform .2s ease;
            }

            .services-col.open .acc-chev {
                transform: rotate(90deg);
            }

            .acc-body {
                max-height: 0;
                overflow: hidden;
                transition: max-height .3s ease;
                padding: 0 16px;
                background: #fff;
            }

            .services-col.open .acc-body {
                max-height: 600px;
                padding: 10px 16px 16px;
            }

            /* Icon strip */
            .icon-strip {
                padding: 30px 0 10px;
            }

            .icon-strip-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px 10px;
            }

            /* Consultant title */
            .consultant-title {
                padding: 30px 18px 24px;
            }

            .consultant-title h2 {
                font-size: 19px;
            }

            .consultant-title p {
                font-size: 13px;
            }

            /* Features */
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 26px 16px;
                padding-bottom: 40px;
            }

            .feature {
                flex-direction: column;
                gap: 10px;
            }

            .feature .ficon {
                width: 38px;
                height: 38px;
            }

            .feature h4 {
                font-size: 15px;
            }

            .feature p {
                font-size: 12.5px;
            }

            /* Dark banner */
            .dark-banner {
                padding: 34px 0;
            }

            .dark-banner h2 {
                font-size: 22px;
            }

            .dark-banner .sub {
                font-size: 13px;
                padding: 10px 14px;
            }

            /* Book strip */
            .book-strip {
                padding: 34px 18px 10px;
            }

            .book-strip p {
                font-size: 16px;
            }

            .trio {
                gap: 26px;
                font-size: 14px;
                flex-wrap: wrap;
            }

            /* How it works */
            .how-section {
                margin: 34px 12px;
                padding: 30px 20px 34px;
            }

            .how-section h2 {
                font-size: 24px;
            }

            .how-grid {
                grid-template-columns: 1fr;
                gap: 34px;
                margin-top: 26px;
            }

            .how-step {
                flex-direction: column;
            }

            .how-step .num {
                font-size: 24px;
            }

            .how-step .illus {
                width: 100%;
                max-width: 260px;
                height: auto;
                margin-top: 10px;
            }

            /* Stats */
            .stats-badge {
                flex-direction: column;
                gap: 12px;
                text-align: center;
                margin: 40px auto 0;
                font-size: 16px;
                padding: 16px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                padding: 30px 18px 40px;
                gap: 26px;
            }

            .stats-grid .num {
                font-size: 36px;
            }

            /* CTA banner */
            .cta-banner {
                padding: 30px 0;
            }

            .cta-banner h3 {
                font-size: 17px;
                margin-bottom: 18px;
            }

            .cta-desktop-btn {
                display: none;
            }

            .cta-mobile-actions {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }

            .cta-icon-row {
                display: flex;
                gap: 16px;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 26px;
                padding-bottom: 26px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: left;
            }

            .footer-bottom span:last-child a {
                margin-left: 0;
                margin-right: 16px;
            }
        }

        /* ============ SERVICE DETAIL PAGE ============ */
        .service-page {
            padding: 48px 0 70px;
        }

        .service-page-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 56px;
            align-items: start;
        }

        .service-title {
            font-size: 34px;
            color: var(--navy);
            line-height: 1.2;
        }

        .service-copy {
            margin: 26px 0 34px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .service-copy p {
            font-size: 15px;
            color: var(--text);
            font-weight: 600;
            line-height: 1.7;
        }

        .guide-box {
            display: flex;
            align-items: center;
            gap: 26px;
            border: 2px solid var(--orange);
            border-radius: 8px;
            padding: 26px 32px;
            margin-bottom: 34px;
        }

        .guide-icon {
            flex-shrink: 0;
        }

        .guide-text h4 {
            font-size: 24px;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .guide-text p {
            font-size: 15px;
            color: var(--muted);
        }

        .services-box {
            background: var(--gray-bg);
            border-radius: 8px;
            padding: 32px;
        }

        .services-box-head {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 22px;
        }

        .services-box-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .services-box-head h4 {
            font-size: 20px;
            color: var(--navy);
        }

        .services-box-list li {
            padding: 12px 0;
            border-top: 1px solid var(--gray-line);
            font-size: 14.5px;
            color: var(--text);
            position: relative;
            padding-left: 18px;
        }

        .services-box-list li:before {
            content: "–";
            position: absolute;
            left: 0;
            color: var(--navy);
            font-weight: 700;
        }

        /* Sidebar */
        .service-sidebar {
            /* border: 1px solid var(--gray-line); */
            border-radius: 8px;
            overflow: hidden;
        }

        .service-sidebar h5 {
            font-size: 17px;
            color: var(--navy);
            padding: 20px 22px;
            border-bottom: 1px solid var(--gray-line);
        }

        .side-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 22px;
            font-size: 14.5px;
            font-weight: 600;
            color: var(--navy);
            border-bottom: 1px solid var(--gray-line);
        }

        .side-row.active {
            background: var(--gray-bg);
        }

        .side-row .side-arrow {
            color: var(--orange);
            font-size: 17px;
        }

        .side-row.plain {
            color: var(--navy);
        }

        /* mobile flat list -- hidden on desktop */
        .other-services-flat {
            display: none;
        }

        @media(max-width:900px) {
            .service-page-grid {
                grid-template-columns: 1fr;
            }

            .service-sidebar {
                display: none;
            }
        }

        @media(max-width:640px) {
            .service-page {
                padding: 26px 0 40px;
            }

            .service-title {
                font-size: 22px;
            }

            .guide-box {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
                gap: 16px;
            }

            .guide-text h4 {
                font-size: 19px;
            }

            .services-box {
                padding: 20px;
            }

            .services-box-head h4 {
                font-size: 17px;
            }

            .other-services-flat {
                display: block;
                margin-top: 0;
            }

            .flat-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 16px 18px;
                font-size: 15px;
                font-weight: 700;
                color: var(--navy);
                background: var(--gray-bg);
                border-bottom: 1px solid var(--gray-line);
            }

            .flat-row.plain {
                background: #fff;
                font-weight: 600;
                color: var(--text);
            }

            .flat-arrow {
                color: var(--muted);
                font-size: 18px;
            }
        }

.guide-sidebar {
    width: 100%;
}

.side-accordion {
    border-bottom: 1px solid #ddd;
}

/* Accordion Header */
.side-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 15px;

    cursor: pointer;

    font-size: 15px;
    font-weight: 600;

    background: #fff;

    transition: 0.3s;
}

.side-accordion-header:hover {
    background: #f5f5f5;
}

/* Arrow */
.side-accordion-header .side-arrow {
    font-size: 25px;
    line-height: 1;

    transition: transform 0.3s ease;
}

/* Dropdown */
.side-accordion-body {
    display: none;
    background: #f8f8f8;
}

/* Dropdown Links */
.side-accordion-body a {
    display: block;

    padding: 10px 15px 10px 25px;

    color: #555;
    text-decoration: none;

    font-size: 14px;

    border-top: 1px solid #eee;

    transition: 0.2s;
}

.side-accordion-body a:hover {
    background: #eee;
    color: #000;
}

/* ACTIVE */
.side-accordion.active .side-accordion-body {
    display: block;
}

.side-accordion.active .side-arrow {
    transform: rotate(90deg);
}