:root {
      --primary: #E87722;
      --secondary: #1A2D5A;
      --accent: #2D8653;
      --bg-color: #F9F9F7;
      --card-bg: #FFFFFF;
      --disclaimer-bg: #FFF3CD;
      --disclaimer-text: #664d03;
      --heading-color: #1A1A1A;
      --text-color: #444444;
      --border-color: #E2E8F0;
      --font-heading: 'Inter', 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
      --font-body: 'Noto Sans', 'Noto Sans Devanagari', 'Inter', 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
      --transition: all 0.3s ease;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
      --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
      --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    }

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

    body {
      font-family: var(--font-body);
      color: var(--text-color);
      background-color: var(--bg-color);
      line-height: 1.6;
      scroll-behavior: smooth;
      font-size: 18px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    @media (max-width: 768px) {
      body {
        font-size: 16px;
      }
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--heading-color);
      line-height: 1.2;
    }

    a {
      text-decoration: none;
      color: var(--secondary);
      transition: var(--transition);
    }

    img, svg {
      max-width: 100%;
      height: auto;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Accessibility */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--primary);
      color: white;
      padding: 8px;
      z-index: 1000;
      transition: top 0.3s;
    }
    .skip-link:focus {
      top: 0;
    }

    /* DISCLAIMER BAR */
    .disclaimer-bar {
      background-color: #FFFFFF;
      color: #555555;
      padding: 8px 20px;
      font-size: 0.82rem;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
      line-height: 1.4;
    }
    .disclaimer-bar a {
      color: #0056b3;
      text-decoration: underline;
    }

    /* TOP AUTHORITY BAR */
    .top-bar {
      background: var(--secondary);
      color: #cbd5e1;
      font-size: 0.85rem;
      padding: 8px 0;
    }
    .top-bar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .top-bar-left a {
      color: #cbd5e1;
      margin-right: 20px;
      text-decoration: none;
      transition: color 0.2s;
    }
    .top-bar-left a:hover {
      color: #ffffff;
    }
    .top-bar-right {
      color: #94a3b8;
    }
    @media (max-width: 768px) {
      .top-bar-right { display: none; }
      .top-bar-container { justify-content: center; }
      .top-bar-left a { margin: 0 10px; }
    }

    /* MAIN CORPORATE NAVBAR */
    .navbar {
      background: #ffffff;
      border-bottom: 1px solid #e2e8f0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px; /* Slightly taller for authority look */
    }
    .logo {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--secondary);
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 25px;
    }
    .nav-links li {
      position: relative;
    }
    .nav-links li a {
      color: #334155;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 10px 0;
      transition: all 0.2s;
      position: relative;
      display: inline-block;
    }
    .nav-links li a:hover {
      color: var(--primary);
    }
    /* Solid crisp bottom border on hover instead of blur */
    .nav-links li > a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0%;
      height: 3px;
      background: var(--primary);
      transition: width 0.3s ease;
    }
    .nav-links li > a:hover::after {
      width: 100%;
    }
    .nav-cta {
      background: var(--primary);
      color: #ffffff !important;
      padding: 10px 20px !important;
      border-radius: 6px;
      font-weight: 700 !important;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s !important;
      box-shadow: 0 4px 6px rgba(232, 119, 34, 0.2);
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: #c2410c;
      color: #ffffff !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(232, 119, 34, 0.3);
    }

    /* Crisp Solid Dropdown Boxes */
    .dropdown-menu {
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px) scale(0.98);
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-top: 4px solid var(--primary);
      border-radius: 0 0 12px 12px;
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
      padding: 12px 0;
      min-width: 260px;
      z-index: 99999;
      margin-top: 20px;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }
    .dropdown-menu::after {
      content: '';
      position: absolute;
      top: -20px;
      left: 0;
      width: 100%;
      height: 20px;
      background: transparent;
    }
    .dropdown-menu li {
      width: 100%;
      padding: 0 8px;
    }
    .dropdown-menu li a {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px !important;
      font-size: 0.92rem !important;
      font-weight: 600 !important;
      color: #334155 !important;
      border-radius: 8px;
      transition: all 0.2s ease !important;
      position: relative;
      overflow: hidden;
      border-bottom: none !important;
    }
    .dropdown-menu li a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: var(--primary);
      transform: scaleY(0);
      transition: transform 0.2s ease;
      transform-origin: center;
      border-radius: 4px 0 0 4px;
    }
    .dropdown-menu li a:hover {
      background: #fff7ed !important;
      color: var(--primary) !important;
      padding-left: 20px !important;
      box-shadow: 0 2px 8px rgba(232, 119, 34, 0.05);
    }
    .dropdown-menu li a:hover::before {
      transform: scaleY(0.6);
    }
    .dropdown-menu li a::after {
      content: '';
      font-size: 1.1rem;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.2s ease;
      color: var(--primary);
    }
    .dropdown-menu li a:hover::after {
      opacity: 1;
      transform: translateX(0);
    }
    @media (min-width: 993px) {
      .nav-links li.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
      }
    }
    .hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--secondary);
    }

    /* Mobile Nav */
    @media (max-width: 992px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
      }
      .nav-links.show {
        display: flex !important;
      }
      .hamburger {
        display: block;
      }
      .nav-links > li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
      }
      .nav-links li a {
        padding: 15px 20px;
        display: block;
      }
      .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 1px solid #e2e8f0 !important;
        border-radius: 0 !important;
        padding: 0 !important;
        background: #f8fafc !important;
        width: 100% !important;
        margin: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
      }
      .dropdown.open .dropdown-menu {
        display: block !important;
      }
      .nav-links li.dropdown > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
      }
      .nav-cta {
        margin: 15px 20px;
        text-align: center;
      }
    }

    /* HERO SECTION - India Theme Flag Redesign */
    @keyframes spinChakra { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
    
    .hero {
      position: relative;
      background: linear-gradient(135deg, rgba(255,153,51,0.06) 0%, rgba(255,255,255,1) 50%, rgba(19,136,8,0.06) 100%);
      padding: 80px 0 100px 0;
      text-align: center;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0,0,128,0.02) 0%, transparent 70%);
      border: 1px dashed rgba(0,0,128,0.15);
      border-radius: 50%;
      z-index: 0;
      animation: spinChakra 90s linear infinite;
      pointer-events: none;
    }
    .hero .container {
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 16px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      color: var(--secondary);
      animation: fadeInDown 0.8s ease-out;
    }
    .hero h1 span {
      background: linear-gradient(to right, #FF9933, #1A2D5A, #138808);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .meta-info {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 24px;
      font-weight: 500;
    }
    .hero-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(226, 232, 240, 0.8);
      border-radius: 16px;
      padding: 40px;
      max-width: 800px;
      margin: 32px auto 0 auto;
      box-shadow: 0 20px 40px rgba(0,0,0,0.06);
      text-align: center;
      position: relative;
      overflow: hidden;
      transform: translateY(0);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hero-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }
    .hero-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 5px;
      width: 100%;
      background: linear-gradient(to right, #FF9933 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #138808 66.66%);
    }
    .hero-card p.intro-text {
      color: var(--text-color);
      font-size: 1.05rem;
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .hero-card h3.card-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--heading-color);
    }
    
    /* Search Box styling */
    .sticky-search-container {
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .search-box-wrapper {
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      gap: 8px;
    }
    .search-input {
      flex: 1;
      padding: 14px 20px;
      border: 2px solid var(--border-color);
      border-radius: 6px;
      font-size: 1rem;
      font-family: var(--font-body);
      outline: none;
      transition: var(--transition);
    }
    .search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.15);
    }
    .search-btn {
      padding: 14px 28px;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      font-family: var(--font-heading);
      cursor: pointer;
      transition: var(--transition);
      font-size: 1rem;
      white-space: nowrap;
    }
    .search-btn:hover {
      background-color: #d66b1e;
    }
    
    @media (max-width: 768px) {
      .sticky-search-container {
        position: static;
        width: 100%;
        margin: 16px 0;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
      }
      .search-box-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin: 0;
      }
      .search-input {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        box-sizing: border-box;
      }
      .search-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        box-sizing: border-box;
        white-space: normal;
      }
      .btn-text-desktop { display: none; }
      .btn-text-mobile  { display: inline; }
      
    }

    .pill-ctas {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .btn-pill {
      display: inline-flex;
      align-items: center;
      padding: 12px 28px;
      border-radius: 9999px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: var(--transition);
      font-family: var(--font-heading);
    }
    .btn-pill-primary {
      background-color: var(--primary);
      color: white;
      border: 2px solid var(--primary);
    }
    .btn-pill-primary:hover {
      background-color: #d66b1e;
      border-color: #d66b1e;
    }
    .btn-pill-secondary {
      background-color: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    .btn-pill-secondary:hover {
      background-color: rgba(232, 119, 34, 0.05);
    }
    
    /* Accordion inside card */
    .card-accordion {
      border: 1px solid var(--border-color);
      border-radius: 6px;
      margin-top: 24px;
      overflow: hidden;
    }
    .card-accordion-header {
      width: 100%;
      padding: 14px 20px;
      background: #fdfdfd;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-family: var(--font-heading);
      cursor: pointer;
      font-size: 0.95rem;
      color: var(--heading-color);
    }
    .card-accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--card-bg);
      text-align: left;
    }
    .card-accordion-content {
      padding: 20px;
      border-top: 1px solid var(--border-color);
      font-size: 0.9rem;
    }

    /* FLOATING INDEX & BACK TO TOP */
    
    
    .back-to-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 99;
      width: 40px;
      height: 40px;
      background: var(--secondary);
      color: white;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
      font-size: 1.2rem;
    }
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    .back-to-top:hover {
      background: var(--primary);
    }

    /* SECTION 4 - QUICK CARDS */
    .section-padding {
      padding: 80px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-header h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
    }
    .section-header p {
      font-size: 1.1rem;
      color: var(--text-color);
    }
    .section-banner-container {
      margin: 32px auto 0 auto;
      max-width: 960px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .services-banner {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-color);
      transition: var(--transition);
      display: block;
      cursor: pointer;
    }
    .services-banner:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    /* LIGHTBOX DIALOG */
    #imageLightbox {
      border: none;
      background: transparent;
      padding: 0;
      max-width: 90vw;
      max-height: 90vh;
      overflow: visible;
      outline: none;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
    #imageLightbox::backdrop {
      background-color: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(8px);
      transition: background-color 0.3s ease-out, backdrop-filter 0.3s ease-out;
    }
    .lightbox-content {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #0f172a;
      border-radius: 16px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-sizing: border-box;
    }
    .lightbox-content img {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 12px;
      display: block;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    .lightbox-close {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 40px;
      height: 40px;
      background: var(--primary);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.2rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      z-index: 10;
    }
    .lightbox-close:hover {
      transform: scale(1.1) rotate(90deg);
      background: #ff8533;
    }
    .lightbox-caption {
      color: #e2e8f0;
      font-size: 0.95rem;
      margin-top: 12px;
      font-family: var(--font-heading);
      text-align: center;
      font-weight: 500;
    }

    /* Modern top-layer animation using standard discrete transitions */
    #imageLightbox[open] {
      opacity: 1;
      transform: scale(1);
      
      @starting-style {
        opacity: 0;
        transform: scale(0.95);
      }
    }
    #imageLightbox {
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out, display 0.3s allow-discrete, overlay 0.3s allow-discrete;
      transition-behavior: allow-discrete;
    }
    #imageLightbox[open]::backdrop {
      background-color: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(8px);
      @starting-style {
        background-color: rgba(15, 23, 42, 0);
        backdrop-filter: blur(0);
      }
    }
    #imageLightbox::backdrop {
      transition: background-color 0.3s ease-out, backdrop-filter 0.3s ease-out, display 0.3s allow-discrete, overlay 0.3s allow-discrete;
      transition-behavior: allow-discrete;
    }

    @media (max-width: 768px) {
      #imageLightbox {
        max-width: 95vw;
        max-height: 95vh;
      }
      .lightbox-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
      }
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .topic-card {
      position: relative;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 28px 24px 24px 24px;
      transition: var(--transition);
      border-left: 4px solid transparent;
      display: block;
      color: inherit;
    }
    .topic-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-left-color: var(--primary);
    }
    .badge-gov {
      position: absolute;
      top: -10px;
      left: 16px;
      background: #0284c7;
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 12px;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 4px rgba(2, 132, 199, 0.2);
      transition: background 0.2s;
    }
    .topic-card:hover .badge-gov {
      background: #0369a1;
    }
    .card-icon {
      font-size: 2rem;
      margin-bottom: 12px;
    }
    .topic-card h3 {
      font-size: 1.25rem;
      margin-bottom: 6px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      color: var(--secondary);
    }
    .topic-card h3 span.arrow {
      color: var(--primary);
      font-size: 1.2rem;
      transition: transform 0.2s;
    }
    .topic-card:hover h3 span.arrow {
      transform: translateX(5px);
    }
    .hindi-sub {
      display: block;
      font-size: 0.85rem;
      color: #64748b;
      margin-top: -2px;
      margin-bottom: 12px;
      font-weight: 500;
    }
    .topic-card p {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.5;
    }

    @media (max-width: 992px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 576px) {
      .cards-grid {
        grid-template-columns: 1fr;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
    }

    /* SECTION 5 & 6 - STEP BY STEP */
    .guide-section {
      background: var(--card-bg);
      border-radius: 12px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      margin-bottom: 40px;
      box-shadow: var(--shadow-md);
    }
    .renewal-grid {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 40px;
    }
    @media (max-width: 992px) {
      .renewal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }
    .tabs-header {
      display: flex;
      border-bottom: 1px solid var(--border-color);
      background: var(--bg-color);
    }
    .tab-btn {
      flex: 1;
      padding: 16px;
      background: none;
      border: none;
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-color);
      cursor: pointer;
      transition: var(--transition);
    }
    .tab-btn.active {
      color: var(--primary);
      background: var(--card-bg);
      border-bottom: 3px solid var(--primary);
    }
    .tab-content {
      display: none;
      padding: 40px;
    }
    .tab-content.active {
      display: block;
      animation: fadeIn 0.4s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .steps-list {
      list-style: none;
      margin-bottom: 32px;
    }
    .steps-list li {
      position: relative;
      padding-left: 48px;
      margin-bottom: 24px;
    }
    .step-number {
      position: absolute;
      left: 0;
      top: -2px;
      width: 32px;
      height: 32px;
      background: var(--secondary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-family: var(--font-heading);
    }
    .steps-list li h4 {
      margin-bottom: 4px;
      font-size: 1.1rem;
    }
    
    /* Left-Border Safety Box (Styled like Screenshot 3) */
    .safety-box {
      background: #FFFFFF;
      border-left: 4px solid var(--secondary);
      border-top: 1px solid var(--border-color);
      border-right: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      padding: 20px;
      border-radius: 4px;
      margin-top: 24px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* SECTION 7 - ACCORDION */
    .accordion-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .accordion-item {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 16px;
      overflow: hidden;
      border-left: 4px solid #ccc;
    }
    .accordion-item.status-green { border-left-color: var(--accent); }
    .accordion-item.status-amber { border-left-color: var(--primary); }
    .accordion-item.status-red { border-left-color: #dc3545; }
    
    .accordion-header {
      width: 100%;
      text-align: left;
      padding: 20px;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--heading-color);
    }
    .accordion-header:hover {
      background-color: rgba(0,0,0,0.02);
    }
    .accordion-icon {
      font-size: 1.5rem;
      color: var(--secondary);
      transition: transform 0.3s;
    }
    .accordion-item.active .accordion-icon {
      transform: rotate(45deg);
    }
    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--card-bg);
    }
    .accordion-content {
      padding: 0 20px 20px 20px;
      border-top: 1px solid var(--border-color);
      padding-top: 16px;
    }
    .learn-more-link {
      display: inline-block;
      margin-top: 12px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--secondary);
    }

    /* SECTION 9 - LINKS PANEL */
    .links-panel {
      background: var(--border-color);
      border-radius: 12px;
      padding: 40px;
      text-align: center;
    }
    .links-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
    .link-card {
      background: var(--card-bg);
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--heading-color);
      font-weight: 500;
      transition: var(--transition);
      border: 1px solid transparent;
    }
    .link-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
    }
    .link-card .url {
      font-size: 0.8rem;
      color: #666;
      display: block;
      font-weight: 400;
    }
    @media (max-width: 768px) {
      .links-grid {
        grid-template-columns: 1fr;
      }
    }

    /* SECTION 11 - TRUST */
    .trust-box {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      padding: 40px;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
    }
    .trust-links {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* FOOTER (Light Gray Styled like Screenshot 4) */
    .footer {
      background: #F9F9F7;
      color: var(--text-color);
      padding: 60px 0 0 0;
      border-top: 1px solid var(--border-color);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 16px;
    }
    .footer-logo span {
      color: var(--primary);
    }
    .footer-desc {
      color: #666666;
      font-size: 0.9rem;
    }
    .footer h4 {
      font-size: 1rem;
      margin-bottom: 20px;
      color: var(--heading-color);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .footer ul {
      list-style: none;
    }
    .footer ul li {
      margin-bottom: 12px;
    }
    .footer ul li a {
      color: var(--secondary);
      font-size: 0.9rem;
      font-weight: 500;
    }
    .footer ul li a:hover {
      color: var(--primary);
      text-decoration: underline;
    }
    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding: 24px 0;
      text-align: center;
      color: #777777;
      font-size: 0.85rem;
      line-height: 1.5;
    }
    @media (max-width: 768px) {
      /* ===== MOBILE OVERFLOW FIX: Footer & Intro ===== */
      html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
      }
      .footer {
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding: 40px 0 0 0 !important;
        overflow: hidden !important;
      }
      .footer .container {
        padding: 0 16px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
      }
      .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }
      .footer-logo { font-size: 1.2rem !important; }
      .footer h4 { margin-bottom: 12px !important; font-size: 0.9rem !important; }
      .footer ul li { margin-bottom: 8px !important; }
      .footer ul li a { font-size: 0.85rem !important; }
      .footer-bottom {
        padding: 16px !important;
        font-size: 0.78rem !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
      }
      .hero {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 12px 0 24px 0 !important;
      }

      .hero h1 {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        padding: 0 4px;
        margin-bottom: 8px !important;
      }
      .meta-info {
        font-size: 0.75rem !important;
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
        padding: 0 8px;
        margin-bottom: 12px !important;
      }

      /* Hero Card with Flexbox Reordering (Search First) */
      .hero-card {
        display: flex;
        flex-direction: column;
        padding: 16px 12px !important;
        margin-top: 8px !important;
        border-radius: 12px !important;
        box-shadow: var(--shadow-sm) !important;
      }
      .hero-card p.intro-text {
        font-size: 0.88rem !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
        order: 2; /* Move intro text down below the search bar */
      }
      .hero-card h3.card-title {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
        order: 0 !important;
      }
      .interactive-widget-card {
        order: 1 !important;
        padding: 16px 12px !important;
        margin: 8px 0 16px 0 !important;
        background: #f8fafc !important;
      }
      #status-check-form button[type="submit"] {
        padding: 16px !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
      }
      #copy-number-btn, #direct-official-link {
        padding: 14px 10px !important;
        font-size: 0.9rem !important;
      }
      #check-result-card div div {
        flex-direction: column !important;
        gap: 8px !important;
      }
      .topic-card:active {
        transform: scale(0.97) !important;
        background: #f1f5f9 !important;
      }
      
            
      /* Mobile Responsiveness Overrides - Prevent Left/Right Overlap & Horizontal Scroll */
      .guide-section {
        padding: 16px 12px !important;
        margin-bottom: 20px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
      }
      .tab-content {
        padding: 16px 12px !important;
        box-sizing: border-box !important;
      }
      /* Prevent tables from overflowing horizontally on mobile screens */
      .guide-section table, table, .rto-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin-bottom: 16px !important;
        box-sizing: border-box !important;
      }
      /* Prevent overall container overflow */
      .container {
        padding: 0 12px !important;
        box-sizing: border-box !important;
      }
      .hero-card {
        padding: 16px 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .interactive-widget-card {
        padding: 16px 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      /* Pill CTAs */
      .pill-ctas {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
      }
      .btn-pill {
        justify-content: center;
        padding: 13px 16px;
        font-size: 0.9rem;
      }

      /* Sections */
      .section-padding {
        padding: 24px 0 !important;
      }
      .section-header {
        margin-bottom: 28px;
      }
      .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
      }
      .section-header p {
        font-size: 1rem;
      }

      /* Guide steps */
      .tab-content {
        padding: 20px 14px;
      }
      .tabs-header {
        overflow-x: auto;
      }
      .tab-btn {
        font-size: 0.9rem;
        padding: 12px 8px;
      }
      .steps-list li {
        padding-left: 38px;
        margin-bottom: 20px;
      }
      .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.82rem;
      }
      .guide-section {
        margin-bottom: 20px;
        border-radius: 8px;
      }

      /* Renewal Grid */
      .renewal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* Trust & links */
      .trust-box {
        padding: 24px 16px;
      }
      .trust-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }
      .links-grid {
        grid-template-columns: 1fr;
      }

      /* Disclaimer */
      .disclaimer-bar {
        padding: 7px 10px;
        font-size: 0.78rem;
      }

      /* AddToAny share buttons */
      .a2a_kit {
        gap: 4px;
      }

      /* Floating buttons */
      
      .back-to-top {
        right: 12px;
        bottom: 12px;
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
      }

      /* Cards grid */
      .cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .topic-card {
        padding: 24px 16px 16px 16px !important;
      }

      /* Container side padding */
      .container {
        padding: 0 16px;
      }
    }

    /* Table & Support Styles */
    .table-container {
      overflow-x: auto;
      margin: 20px 0 30px 0;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .rto-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.92rem;
      background: var(--card-bg);
    }
    .rto-table th {
      background-color: var(--secondary);
      color: #FFFFFF;
      padding: 14px 16px;
      font-weight: 600;
      font-family: var(--font-heading);
    }
    .rto-table td {
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-color);
    }
    .rto-table tr:last-child td {
      border-bottom: none;
    }
    .rto-table tr:nth-child(even) {
      background-color: var(--bg-color);
    }
    .rto-table tr:hover {
      background-color: rgba(26, 45, 90, 0.03);
    }
    
    .table-search-box {
      width: 100%;
      max-width: 400px;
      padding: 12px 16px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      font-size: 0.95rem;
      margin: 0 auto 24px auto;
      display: block;
      outline: none;
      transition: var(--transition);
      background: var(--card-bg);
      text-align: center;
    }
    .table-search-box:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.15);
      text-align: left;
    }

    /* Forms Download Cards */
    .forms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 24px;
    }
    .form-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .form-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .form-badge {
      display: inline-block;
      padding: 4px 8px;
      background: rgba(232, 119, 34, 0.1);
      color: var(--primary);
      border-radius: 4px;
      font-size: 0.78rem;
      font-weight: 700;
      width: fit-content;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .form-card h3 {
      font-size: 1.15rem;
      margin-bottom: 8px;
    }
    .form-card p {
      font-size: 0.88rem;
      color: #666;
      margin-bottom: 16px;
      line-height: 1.4;
    }
    .form-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--secondary);
      color: #FFF !important;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
    }
    .form-btn:hover {
      background: var(--primary);
    }

    /* Issue Card Styles */
    .issues-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 24px;
    }
    .issue-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-left: 4px solid var(--primary);
      border-radius: 0 8px 8px 0;
      padding: 20px;
      box-shadow: var(--shadow-sm);
    }
    .issue-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .issue-cause, .issue-solution {
      font-size: 0.92rem;
      margin-bottom: 8px;
      line-height: 1.5;
    }
    .issue-cause strong {
      color: #c92a2a;
    }
    .issue-solution strong {
      color: var(--accent);
    }

    /* Utilities */
    .bg-light { background-color: var(--bg-color); }
    .bg-white { background-color: var(--card-bg); }

    /* Tree Model styling */
    .tree-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
      position: relative;
      padding: 20px 0;
    }
    .tree-root {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }
    .tree-node {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 20px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      text-align: center;
    }
    .tree-node:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .root-node {
      max-width: 450px;
      border: 2px solid var(--secondary);
      background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
    }
    .root-node h3 {
      font-size: 1.4rem;
      color: var(--secondary);
      margin: 10px 0 6px 0;
    }
    .root-node p {
      font-size: 0.9rem;
      color: #666;
    }
    .node-icon {
      font-size: 2.2rem;
      display: inline-block;
      animation: pulse-node 2s infinite;
    }
    @keyframes pulse-node {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .tree-branches {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      position: relative;
      margin-bottom: 50px;
    }
    
    /* Horizontal Connector Line */
    .tree-branches::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 16%;
      right: 16%;
      height: 3px;
      background: var(--border-color);
      z-index: 1;
    }
    
    /* Central stem from root to the horizontal line */
    .tree-container::before {
      content: '';
      position: absolute;
      top: 100px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 40px;
      background: var(--border-color);
      z-index: 1;
    }
    
    .tree-branch {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }
    
    /* Vertical stem for each branch */
    .tree-branch-line {
      width: 3px;
      height: 20px;
      background: var(--border-color);
      margin-bottom: 0px;
    }
    
    .branch-node {
      width: 100%;
      background: var(--secondary);
      color: #FFF !important;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      padding: 12px;
      z-index: 2;
    }
    .branch-node h4 {
      color: #FFF !important;
      font-size: 1.05rem;
    }
    
    .tree-leaves {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      position: relative;
    }
    
    /* Connector line for leaves */
    .tree-leaves::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 100%;
      background: var(--border-color);
      z-index: 1;
    }
    
    .leaf-node {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 16px;
      font-size: 0.88rem;
      text-align: left;
      z-index: 2;
      position: relative;
    }
    .leaf-node strong {
      display: block;
      color: var(--heading-color);
      margin-bottom: 4px;
      font-size: 0.95rem;
    }
    .leaf-node p {
      color: #666;
      line-height: 1.4;
    }
    
    .tree-leaf-downloads {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      position: relative;
      z-index: 2;
    }
    
    /* Connection lines from leaves to downloads */
    .tree-leaf-downloads::before {
      content: '';
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 40px;
      background: var(--border-color);
      z-index: 1;
    }

    /* Premium download badge styling */
    .download-badge-wrapper {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .app-store-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #111;
      color: #FFF !important;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      transition: var(--transition);
      border: 1px solid #222;
      box-shadow: var(--shadow-md);
      min-width: 180px;
    }
    .app-store-badge:hover {
      background: #222;
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
    .badge-text {
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .get-it-on {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #aaa;
    }
    .store-name {
      font-size: 1.05rem;
      font-weight: 700;
      font-family: var(--font-heading);
    }
    
    @media (max-width: 850px) {
      .tree-branches {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .tree-branches::before {
        display: none;
      }
      .tree-container::before {
        display: none;
      }
      .tree-branch-line {
        display: none;
      }
      .tree-leaves::before {
        left: 20px;
        transform: none;
      }
      .leaf-node {
        margin-left: 20px;
        width: calc(100% - 20px);
      }
      .tree-leaf-downloads::before {
        display: none;
      }
    }

    /* SEO Optimized Table of Contents */
    .seo-toc {
      max-width: 680px;
      margin: 30px auto;
      padding: 24px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      text-align: left !important;
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(10px);
    }
    .toc-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 16px;
      border-bottom: 2px solid var(--primary);
      padding-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      text-align: left !important;
    }
    .toc-list {
      list-style: none !important;
      list-style-type: none !important;
      padding: 0 !important;
      margin: 0 !important;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 24px;
      text-align: left !important;
    }
    .toc-list li {
      font-size: 0.9rem;
      list-style: none !important;
      list-style-type: none !important;
      padding: 0 !important;
      margin: 0 !important;
      text-align: left !important;
    }
    .toc-list li::before {
      content: none !important;
    }
    .toc-list li a {
      color: #475569;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      font-weight: 600;
      text-align: left !important;
      text-decoration: none;
    }
    .toc-list li a::before {
      content: "";
      color: var(--primary);
      font-size: 0.8rem;
    }
    .toc-list li a:hover {
      color: var(--primary);
      transform: translateX(4px);
    }
    
    @media (max-width: 650px) {
      .seo-toc {
        max-width: 100%;
        margin: 20px 10px;
        padding: 16px;
      }
      .toc-list {
        grid-template-columns: 1fr;
        gap: 10px;
      }
    }
  
    /* Related Services Cards */
    .related-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 32px;
    }
    .related-card {
      background: var(--card-bg, #FFFFFF);
      border: 1px solid var(--border-color, #E2E8F0);
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border-top: 4px solid var(--primary);
      text-align: left !important;
    }
    .related-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .related-card h3 {
      font-size: 1.15rem;
      margin-bottom: 8px;
      color: var(--secondary);
    }
    .related-card p {
      font-size: 0.88rem;
      color: #666;
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .related-link {
      font-weight: 600;
      color: var(--primary);
      font-size: 0.9rem;
      text-decoration: none;
    }

  
    /* PRO ROW CARDS */

    .pro-row-card:hover .pro-card-icon svg {
      transform: scale(1.15) rotate(4deg);
      filter: drop-shadow(0 8px 12px rgba(197, 48, 48, 0.4));
    }

    .pro-cards-container {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 950px;
      margin: 40px auto 0;
    }
    .pro-row-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fafaf8;
      border-radius: 20px;
      padding: 36px 48px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(0,0,0,0.03);
    }
    .pro-row-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(194, 65, 12, 0.1);
      background: #ffffff;
    }
    .pro-card-content {
      max-width: 70%;
    }
    .pro-card-content h3 {
      color: #c53030; /* Bold Red */
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .pro-card-content p {
      color: #4a5568;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    
    .pro-card-icon {
      width: 100px;
      height: 100px;
      min-width: 100px;
      color: #c53030;
      flex-shrink: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .pro-card-icon svg {
      width: 80px;
      height: 80px;
      display: block;
      filter: drop-shadow(0 4px 6px rgba(197, 48, 48, 0.2));
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .pro-row-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 24px;
        gap: 20px;
      }
      .pro-card-content {
        max-width: 100%;
      }
    }