/* ===== FONTS ===== */
    /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap'); */
    
    /* ===== BASIC RESET ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-color: #ff7b00;
      --secondary-color: #cc6300;
      --accent-color: #ff9500;
      --text-dark: #333;
      --text-light: #666;
      --bg-light: #fffaf3;
      --bg-white: #ffffff;
      --shadow: 0 5px 15px rgba(0,0,0,0.1);
      --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    }

    body {
      font-family: 'Poppins', sans-serif;
      font-weight: 400; /* Default to regular weight */
      font-size: 16px; /* Base font size for better readability */
      line-height: 1.6; /* Better line spacing */
      background-color: var(--bg-light);
      color: var(--text-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* ===== HEADER ===== */
    header {
      background-color: var(--bg-white);
      color: var(--primary-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 50px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 8px 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    header img {
      height: 60px;
      width: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    header img:hover {
      transform: scale(1.05);
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav a {
      color: var(--primary-color);
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
      position: relative;
      transition: color 0.3s;
      font-size: 15px;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-color);
      transition: width 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: var(--secondary-color);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--primary-color);
      cursor: pointer;
      z-index: 101;
      transition: transform 0.3s ease;
    }

    .mobile-menu-btn:hover {
      transform: scale(1.1);
    }

    /* ===== PAGE BANNER ===== */
    .page-banner {
      background: linear-gradient(135deg, rgba(255,123,0,0.8), rgba(255,149,0,0.7)), url('https://images.unsplash.com/photo-1586201375761-83865001e31c?auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      height: 35vh;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      position: relative;
    }

    .page-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    .page-banner h1 {
      font-size: clamp(1.8rem, 6vw, 2.5rem);
      font-weight: 800;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
      margin-bottom: 15px;
      letter-spacing: -1px;
      position: relative;
      z-index: 2;
    }

    .breadcrumb {
      font-size: clamp(0.85rem, 2vw, 1rem);
      opacity: 0.9;
      position: relative;
      z-index: 2;
    }

    .breadcrumb a {
      color: white;
      text-decoration: none;
      margin: 0 5px;
      transition: opacity 0.3s;
    }

    .breadcrumb a:hover {
      opacity: 0.8;
    }

    /* ===== POLICY CONTENT ===== */
    .policy-content {
      padding: 40px 20px;
      background-color: var(--bg-white);
      max-width: 900px;
      margin: 0 auto;
    }

    .policy-section {
      margin-bottom: 35px;
    }

    .policy-section h2 {
      color: var(--primary-color);
      font-size: clamp(1.4rem, 4vw, 1.8rem);
      margin-bottom: 15px;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 8px;
    }

    .policy-section h3 {
      color: var(--primary-color);
      font-size: clamp(1.1rem, 3.5vw, 1.3rem);
      margin: 20px 0 15px;
    }

    .policy-section p {
      color: var(--text-light);
      line-height: 1.7;
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      margin-bottom: 15px;
    }

    .policy-section ul {
      color: var(--text-light);
      line-height: 1.7;
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      margin-bottom: 15px;
      padding-left: 20px;
    }

    .policy-section li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 25px;
    }

    .policy-section li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--primary-color);
      font-weight: bold;
    }

    .highlight-box {
      background-color: var(--bg-light);
      border-left: 4px solid var(--primary-color);
      padding: 20px;
      margin: 25px 0;
      border-radius: 8px;
    }

    .highlight-box h3 {
      color: var(--primary-color);
      font-size: clamp(1.1rem, 3.5vw, 1.3rem);
      margin-bottom: 15px;
    }

    .highlight-box p {
      margin-bottom: 0;
      font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

 /* ===== FOOTER ===== */
    footer {
      background-color: #333;
      color: white;
      padding: 60px 5% 20px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto 40px;
      width: 100%;
      box-sizing: border-box;
    }

    .footer-section {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
      padding-right: 30px;
      box-sizing: border-box;
    }

    .footer-section h3 {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-section h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--primary-color);
    }

    .footer-section p,
    .footer-section ul {
      color: #ccc;
      line-height: 1.8;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 10px;
      transition: transform 0.3s ease;
    }

    .footer-section ul li:hover {
      transform: translateX(5px);
    }

    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--primary-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary-color);
      transform: translateY(-5px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
      font-size: 0.9em;
      width: 100%;
      box-sizing: border-box;
    }
    /* ===== BACK TO TOP BUTTON ===== */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 20px;
      width: 45px;
      height: 45px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 99;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: var(--secondary-color);
      transform: translateY(-5px);
    }

    /* ===== WHATSAPP BUTTON ===== */
    .whatsapp-btn {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 50px;
      height: 50px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      z-index: 100;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
    }

    .whatsapp-btn.active {
      opacity: 1;
      visibility: visible;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      background-color: #128C7E;
    }

    .whatsapp-btn i {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }

    /* ===== MOBILE MENU OVERLAY ===== */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 98;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 768px) {
      header {
        padding: 10px 20px;
      }

      .mobile-menu-btn {
        display: block;
      }

      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 70px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
      }

      nav.active {
        right: 0;
      }

      nav a {
        margin: 15px 0;
        font-size: 1.1rem;
        width: 100%;
      }

      .page-banner {
        height: 25vh;
        min-height: 200px;
      }

      .page-banner h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
      }

      .policy-content {
        padding: 30px 15px;
      }
      
      .policy-section h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
      }
      
      .policy-section h3 {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin: 15px 0 10px;
      }
      
      .policy-section p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-bottom: 12px;
      }
      
      .policy-section ul {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-bottom: 12px;
        padding-left: 15px;
      }
      
      .policy-section li {
        margin-bottom: 10px;
        padding-left: 20px;
      }

      .highlight-box {
        margin: 20px 0;
        padding: 15px;
      }
      
      .highlight-box h3 {
        font-size: clamp(1rem, 3vw, 1.2rem);
      }
      
      .highlight-box p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
      }
      
      .footer-content {
        flex-direction: column;
        gap: 25px;
      }
      
      /* WhatsApp button adjustments for mobile */
      .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
      }
      
      .back-to-top {
        bottom: 75px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 576px) {
      .page-banner h1 {
        font-size: clamp(1.3rem, 8vw, 1.7rem);
      }

      .policy-section h2 {
        font-size: clamp(1.1rem, 4.5vw, 1.4rem);
      }
      
      .policy-section h3 {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin: 12px 0 8px;
      }
      
      .policy-section p {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        margin-bottom: 10px;
      }
      
      .policy-section ul {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        margin-bottom: 10px;
        padding-left: 12px;
      }
      
      .policy-section li {
        margin-bottom: 8px;
        padding-left: 15px;
      }

      .highlight-box {
        margin: 15px 0;
        padding: 12px;
      }
      
      .highlight-box h3 {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
      }
      
      .highlight-box p {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
      }
    }