/* ===== BASE STYLES ===== */
:root {
    --primary: #6537eb;
    --primary-light: #b033db;
    --primary-dark: #d34478;
    --secondary: #fc7152;
    --accent: #fa5a39;
    --accent-light: #e84852;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--accent-light), var(--accent));
    --radius: 12px;
    --transition: all 0.3s ease;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
      "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
    position: relative;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .text-gradient {
  background: linear-gradient(135deg, #6537eb 0%, #b033db 25%, #d34478 50%, #fc7152 75%, #e84852 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
  
  /* Background Decorative Elements */
  .bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
  }
  
  .shape-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--accent);
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: var(--primary);
}

.shape-3 {
  top: 40%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: var(--accent-light);
}
  
  /* ===== HEADER STYLES ===== */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
  }
  
  #header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #logo {
    width: 36px;
    height: auto;
  }
  
  .site-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #6537eb 0%, #b033db 25%, #d34478 50%, #fc7152 75%, #e84852 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
  
  .main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
  }
  
  .main-nav a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
  }
  
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--primary);
  }
  
  .main-nav a:hover:after,
  .main-nav a.active:after {
    width: 100%;
  }
  
  .download-btn {
  background: var(--gradient-secondary);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(232, 72, 82, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 72, 82, 0.4);
}
  
  .download-btn:after {
    display: none !important;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
  }
  
  /* ===== LEGAL HERO SECTION ===== */
  .legal-hero {
    padding: 180px 0 80px;
    background-color: var(--background-alt);
    text-align: center;
  }
  
  .legal-title {
    font-family: "Poppins", sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .legal-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* ===== LEGAL CONTENT SECTION ===== */
  .legal-content {
    padding: 80px 0;
  }
  
  .legal-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
  
  .legal-sidebar {
    position: relative;
  }
  
  .sidebar-sticky {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow);
  }
  
  .sidebar-sticky h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-dark);
  }
  
  .toc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .toc-list a {
    color: var(--text-light);
    font-size: 15px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
  }
  
  .toc-list a:hover,
  .toc-list a.active {
    color: var(--primary);
    border-left-color: var(--primary);
    transform: translateX(3px);
  }
  
  .legal-text {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
  }
  
  .legal-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
  }
  
  .legal-section:last-child {
    margin-bottom: 0;
  }
  
  .legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-dark);
  }
  
  .legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
  }
  
  .legal-section p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
  }
  
  .legal-section ul,
  .legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .legal-section ul li,
  .legal-section ol li {
    margin-bottom: 10px;
    color: var(--text-light);
    position: relative;
  }
  
  .legal-section ul {
    list-style-type: disc;
  }
  
  .legal-section ol {
    list-style-type: decimal;
  }
  
  .legal-section a {
    text-decoration: underline;
  }
  
  .legal-section strong {
    font-weight: 600;
    color: var(--text-dark);
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .footer-branding {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    width: 60px;
    margin-bottom: 20px;
  }
  
  .footer-slogan {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .social-links {
    display: flex;
    gap: 16px;
  }
  
  .social-link {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}
  
  .social-icon {
    width: 20px;
    height: 20px;
    color: white;
  }
  
  .footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .footer-column {
    min-width: 150px;
  }
  
  .footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary);
}
  
  .footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 15px;
    transition: var(--transition);
  }
  
  .footer-link:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }
  
  .contact-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .contact-link:hover {
    color: white;
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 1024px) {
    .legal-title {
      font-size: 48px;
    }
  
    .legal-container {
      grid-template-columns: 220px 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .legal-hero {
      padding: 140px 0 60px;
    }
  
    .legal-title {
      font-size: 40px;
    }
  
    .legal-container {
      grid-template-columns: 1fr;
    }
  
    .sidebar-sticky {
      position: relative;
      top: 0;
      margin-bottom: 30px;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      box-shadow: 0 10px 15px var(--shadow);
    }
  
    .main-nav.active {
      max-height: 300px;
      padding: 20px 0;
    }
  
    .main-nav ul {
      flex-direction: column;
      gap: 15px;
      padding: 0 20px;
    }
  
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
  
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  }
  
  @media (max-width: 576px) {
    .legal-title {
      font-size: 32px;
    }
  
    .legal-subtitle {
      font-size: 16px;
    }
  
    .legal-text {
      padding: 25px;
    }
  
    .legal-section h2 {
      font-size: 24px;
    }
  
    .legal-section h3 {
      font-size: 18px;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }
  
  