  :root {
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --silver-primary: #C0C0C0;
    --silver-secondary: #A8A8A8;
    --bg-dark: #0a0a0a;
    --panel-dark: #151515;
    --panel-light: #1e1e1e;
    --text-light: #f8f8f8;
    --text-muted: #b0b0b0;
    --border-radius: 16px;
    --box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    padding: 20px;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
      radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.1) 0%, transparent 25%);
    line-height: 1.6;
  }

  /* Back Button */
  .back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
  }

  .back-button:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-secondary);
  }

  /* Header Styles */
  header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  header::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--silver-primary));
    margin: 20px auto;
    border-radius: 4px;
    opacity: 0.8;
  }

  h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  }

  .subheading {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
  }

  /* Policy Container */
  .policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(21, 21, 21, 0.7);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  .policy-section {
    margin-bottom: 30px;
  }

  .policy-section h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }

  .policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 4px;
  }

  .policy-section p {
    margin-bottom: 15px;
    color: var(--text-light);
  }

  .policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .policy-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }

  .policy-section li::before {
    content: '•';
    color: var(--gold-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
  }

  .contact-link {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
  }

  .contact-link:hover {
    text-decoration: underline;
    color: var(--gold-secondary);
  }

  /* Footer */
  .footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.8;
  }

  /* Lang Switcher */
  .lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    background: rgba(21, 21, 21, 0.85);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .lang-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  
  .lang-btn.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.2rem;
    }
    
    .policy-container {
      padding: 25px;
    }
    
    .policy-section h2 {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }
    
    .subheading {
      font-size: 1rem;
    }
    
    .policy-container {
      padding: 20px;
    }
  }

  /* Light Mode */
  .light-mode {
    --bg-dark: ivory;
    --panel-dark: #f8f8f8;
    --panel-light: #ffffff;
    --text-light: #1a1a1a;
    --text-muted: #555;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .light-mode .policy-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
  }

  .light-mode .policy-section h2 {
    color: var(--gold-primary);
  }

  .light-mode .policy-section p {
    color: var(--text-light);
  }

  .light-mode .contact-link {
    color: var(--gold-primary);
  }

  .light-mode .contact-link:hover {
    color: var(--gold-secondary);
  }

  .light-mode .footer {
    color: var(--text-muted);
  }

  .light-mode .lang-switcher {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .light-mode .lang-btn {
    color: #555;
  }

  .light-mode .lang-btn.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
  }

  .light-mode .back-button {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-secondary);
  }
  
  
  .light-mode .dropdown-menu li a {
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .light-mode .dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .light-mode .particle {
    background: rgba(0, 0, 0, 0.12);
  }
   /* Menu Wrapper */
  .menu-wrapper {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1100;
    background: rgba(21, 21, 21, 0.85);
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .hamburger {
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    list-style: none;
    margin-top: 8px;
    padding: 0;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.3s ease;
    min-width: 140px;
  }

  .dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .light-mode .menu-wrapper {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .light-mode .hamburger {
    color: var(--text-light);
  }

  .light-mode .hamburger:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .light-mode .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .light-mode .dropdown-menu li a {
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .light-mode .dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.06);
  }
  .lang-switcher {
  display: none !important;
}

