 :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:1180px;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 PAGE ============ */
  .divider.small{width:44px;height:3px;margin:12px 0 24px;}
  .guide-card{border:1px solid var(--gray-line);border-radius:10px;padding:36px 40px;margin-bottom:34px;box-shadow:0 6px 24px rgba(43,38,96,.06);}
  .guide-card-head{display:flex;align-items:center;gap:24px;}
  .guide-card-head h4{font-size:26px;color:var(--navy);margin-bottom:6px;}
  .guide-card-head p{font-size:14.5px;color:var(--muted);}
  .guide-hr{border:none;border-top:1px solid var(--gray-line);margin:28px 0;}
  .guide-subhead{font-size:19px;color:var(--navy);}
  .step-heading{font-size:20px;color:var(--navy);margin:30px 0 18px;}
  .step-item{display:flex;gap:16px;padding:16px 0;border-top:1px solid var(--gray-line);}
  .step-item:first-of-type{border-top:none;}
  .step-icon{
    width:38px;height:38px;border-radius:50%;background:var(--navy);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .step-icon-filled{background:var(--navy-2);}
  .step-body h5{font-size:15px;color:var(--text);margin-bottom:6px;}
  .step-body p{font-size:13.5px;color:var(--muted);margin-bottom:8px;line-height:1.7;}
  .step-body p:last-child{margin-bottom:0;}
  .link-orange{color:var(--orange);font-weight:700;text-decoration:none;}
  .guide-link-line{font-size:13.5px;font-weight:700;margin:20px 0 6px;}
  .guide-cta{
    background:var(--gray-bg);border-radius:8px;text-align:center;
    padding:30px 20px;margin-top:30px;
  }
  .guide-cta p{font-size:16px;color:var(--navy);font-weight:700;margin-bottom:16px;}
  .guide-cta .btn{display:inline-flex;align-items:center;}

  /* Required documents */
  .docs-section{margin-top:40px;}
  .docs-heading{
    display:flex;align-items:center;gap:12px;font-size:19px;color:var(--navy);margin-bottom:18px;
  }
  .docs-table{width:100%;border-collapse:collapse;border:1px solid var(--gray-line);margin-bottom:26px;}
  .docs-table td{border:1px solid var(--gray-line);padding:16px 18px;vertical-align:top;font-size:13.5px;color:var(--text);}
  .doc-title{font-weight:700;color:var(--text);margin-bottom:8px;}
  .doc-list{padding-left:18px;list-style:disc;display:flex;flex-direction:column;gap:4px;}
  .doc-list li{font-size:13.5px;color:var(--muted);}
  .docs-table tr{width:100%;}
  .doc-col-right{width:160px;color:var(--muted);}

  .note-box{
    background:#fdf6d8;border:1px solid #f0e2a0;border-radius:6px;
    padding:20px 24px;margin-bottom:26px;
  }
  .note-title{font-weight:800;color:var(--navy);margin-bottom:10px;}
  .note-box ul{padding-left:18px;list-style:disc;display:flex;flex-direction:column;gap:8px;}
  .note-box li{font-size:13.5px;color:var(--text);line-height:1.6;}

  .reference-box .ref-title{font-weight:800;color:var(--navy);margin-bottom:10px;font-size:15px;}
  .reference-box ul{padding-left:18px;list-style:disc;display:flex;flex-direction:column;gap:8px;}
  .reference-box li{font-size:13.5px;color:var(--muted);}

  /* Guide sidebar extras */
  .guide-sidebar{border:none;display:flex;flex-direction:column;gap:22px;}
  .call-box-side{
    display:block;text-align:center;background:var(--orange);color:#fff;border-radius:8px;
    padding:16px;font-weight:700;font-size:14px;line-height:1.6;
  }
  .call-box-side span{font-size:17px;}
  .other-services-title{font-size:18px;color:var(--navy);padding:0;border:none;}
  .guide-sidebar .side-row{border:1px solid var(--gray-line);border-radius:6px;margin-bottom:2px;}

  @media(max-width:900px){
    .guide-sidebar{display:none;}
  }
  @media(max-width:640px){
    .guide-card{padding:22px 18px;}
    .guide-card-head{flex-direction:column;text-align:center;gap:14px;}
    .guide-card-head h4{font-size:19px;}
    .step-item{flex-direction:row;}
    .docs-table td{padding:12px;}
    .doc-col-right{width:auto;}
  }