:root {
      --bg: #ffffff;
      --text: #000000;
      --accent: #000000;
      --gray-light: #f8f9fa;
      --border: rgba(0,0,0,0.12);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
      --transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
      --footer-bg: #ffffff;
      --footer-text: #1f2937;
      --footer-text-muted: #6b7280;
      --footer-accent: #1d4ed8;
      --footer-border: rgba(0,0,0,0.08);
      --footer-hover: #3b82f6;
      --badge-bg: rgba(0,0,0,0.03);
      --badge-border: rgba(0,0,0,0.10);
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { font-size: 100%; scroll-behavior: smooth; }
    body { 
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      min-height: 100vh;
      background: #f8fafc;
      background-image: 
        radial-gradient(#cbd5e1 0.2px, transparent 1px);
        background-size: 20px 20px;
    }

    /* ──────────────────────────────────────────────
       NAVIGATION ── UNCHANGED
    ────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      z-index: 1000;
      backdrop-filter: blur(20px);
      background: rgba(255, 255, 255, 0.12);
      transition: var(--transition);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      font-size: clamp(1.5rem, 4vw, 1.9rem);
      font-weight: 800;
      letter-spacing: -1.2px;
      color: var(--text);
      transition: var(--transition);
    }

    .logo img {
      display: block;
      height: 8rem;
      width: auto;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .logo:hover img {
      transform: scale(1.04);
      opacity: 0.92;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: var(--transition);
      transform: translateX(-50%);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-btn {
      height: 38px;
      padding: 0 18px;
      font-size: 14.5px;
      font-weight: 600;
      line-height: 1;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 10px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      backdrop-filter: blur(16px);
      color: #fff;
      white-space: nowrap;
      position: relative;
      background: #000000;
    }

    .nav-btn:hover {
      background: #ff0000;
      transform: translateY(-1.5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      padding: 8px;
      z-index: 1001;
    }

    .menu-toggle span {
      width: 28px;
      height: 2.5px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      transform-origin: center;
    }

    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(9px, 8px); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(9px, -8px); }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bg);
      color: var(--text);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 48px;
      font-size: 2.8rem;
      font-weight: 400;
      letter-spacing: -1.5px;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-30px);
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateY(0);
    }

    .mobile-menu a {
      color: var(--text);
      text-decoration: none;
      opacity: 0.85;
      transition: all 0.4s ease;
    }

    .body-no-scroll { overflow: hidden !important; height: 100vh !important; }

    /* ──────────────────────────────────────────────
       REDESIGNED BODY (FLUID & TYPOGRAPHIC)
    ────────────────────────────────────────────── */
    .refund-wrapper {
      padding: 0 6%;
      margin: 110px auto 120px;
    }

    .policy-hero {
      margin-bottom: 80px;
    }

    .policy-hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -1.4px;
      line-height: 1.05;
      margin-bottom: 1.2rem;
      color: #0f172a;
    }

    .policy-hero .subtitle {
      font-size: 1.25rem;
      color: #475569;
      max-width: 700px;
      margin-bottom: -12px;
    }

    .last-updated-tag {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #94a3b8;
      font-weight: 700;
    }

    .policy-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 60px;
      margin-top: 80px;
    }

    .policy-nav {
      position: sticky;
      top: 120px;
      height: fit-content;
    }

    .policy-nav ul {
      list-style: none;
      border-left: 2px solid #e2e8f0;
    }

    .policy-nav li a {
      display: block;
      padding: 10px 20px;
      color: #64748b;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: 0.3s;
    }

    .policy-nav li a:hover { color: #000; }

    .policy-content section {
      margin-bottom: 80px;
    }

    .policy-content h2 {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      color: #0f172a;
    }

    .policy-content h2::before {
      content: "";
      width: 40px;
      height: 2px;
      background: #000;
    }

    .policy-content p {
      font-size: 1.15rem;
      color: #475569;
      margin-bottom: 20px;
      max-width: 800px;
      text-align: justify;
    }

    .policy-content ul {
      list-style: none;
      margin-bottom: 20px;
    }

    .policy-content ul li {
      font-size: 1.1rem;
      color: #475569;
      padding: 12px 0;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .policy-content ul li strong { color: #000; }

    .notice-bar {
      margin: 40px 0;
      padding: 30px 0;
      border-top: 2px solid #000;
      border-bottom: 2px solid #000;
    }

    .notice-bar strong {
      font-size: 1.4rem;
      display: block;
      margin-bottom: 8px;
    }

    .contact-cta {
      margin-top: 100px;
      padding: 60px 0;
      border-top: 1px solid #cbd5e1;
    }

    .contact-cta h3 {
      font-size: 2.5rem;
      letter-spacing: -1px;
      margin-bottom: 15px;
      color: #0f172a;
    }

    .email-link {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000;
      text-decoration: underline;
      text-underline-offset: 8px;
    }

/* Footer remains unchanged from your original */
    
/* ==================================== RESPONSIVE MEDIA QUERIES ==================================== */

/* ═══════════════════════════════════════════════════════
   NAVIGATION - Hide nav buttons on small devices
   ════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    /* Hide nav-right buttons on tablets and smaller */
    .nav-right {
        display: none;
    }
    
    /* Show menu toggle */
    .menu-toggle {
        display: flex;
    }
    
    /* Adjust nav padding */
    nav {
        padding: 0 4%;
    }
}

/* ═══════════════════════════════════════════════════════
   Main body
   ════════════════════════════════════════════════════ */

/* --- Desktop/Large Tablet (1200px) --- */
@media (max-width: 1200px) {
  .refund-wrapper {
    max-width: 1100px;
    padding: 0 4%;
    margin-top: 140px;
    margin-bottom: -50px;
  }

  .policy-grid {
    gap: 40px;
    grid-template-columns: 240px 1fr; /* Slightly narrower sidebar */
  }

  .policy-hero h1 {
    font-size: 3rem;
  }

  .policy-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #101010;
  }

  .policy-content p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .policy-content ul li {
    font-size: 0.95rem;
  }
}

/* --- Tablet (768px) --- */
@media (max-width: 768px) {
  .refund-wrapper {
    margin-top: 110px; /* Space for fixed nav */
    margin-bottom: -30px;
    padding: 0 3%;
  }

  .policy-hero {
    margin-bottom: 50px;
    text-align: center;
  }

  .policy-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .policy-hero .subtitle {
    font-size: 1rem;
    margin: 0 auto;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 0;
  }

  .policy-nav {
    display: none; /* Sidebar navigation hidden on tablet */
  }

  .policy-content section {
    margin-bottom: 60px;
  }

  .policy-content h2 {
    font-size: 1.1rem;
  }

  .policy-content p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .policy-content h2::before {
    width: 30px;
  }

  .policy-content ul li {
    font-size: 0.95rem;
  }

  .contact-cta {
    margin-top: 60px;
    padding: 40px 0;
    text-align: center;
  }

  .contact-cta h3 {
    font-size: 2rem;
  }

  .email-link {
    font-size: 1.25rem;
  }
}

/* --- Mobile (480px) --- */
@media (max-width: 480px) {
  .refund-wrapper {
    margin-top: 90px;
    padding: 0 2%;
    margin-bottom: -20px;
  }

  .last-updated-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .policy-hero h1 {
    font-size: 1.8rem;
  }

  .policy-hero .subtitle {
    font-size: 0.95rem;
    padding-bottom: 30px;
  }

  .notice-bar {
    padding: 20px 0;
  }

  .notice-bar strong {
    font-size: 1.2rem;
  }

  .policy-content h2 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .policy-content p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
  }

  
  .policy-content ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 15px 0;
  }

  .policy-content ul li span {
    font-size: 0.95rem;
    color: #64748b;
  }

  .contact-cta h3 {
    font-size: 1.75rem;
  }

  .contact-cta{margin-top: 80px;}

  .email-link {
    font-size: 1.1rem;
    text-underline-offset: 5px;
  }
}

.is-invalid{
    border-color : red !important;
}
.valid{
    border-color : #ddd;
}