:root {
    --primary: #6e48aa;
    --secondary: #9d50bb;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --accent: #ff7e33;
    --text: #333;
    --text-light: #666;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f5f7ff;
    background-image: linear-gradient(to bottom right, #f5f7ff 0%, #f0f4ff 100%);
  }
  /* header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(198, 10, 245);
    color: #fff;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  nav {
    display: flex;
    gap: 2rem;
    margin-left: 2rem;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: color 0.3s;
  }

  nav a:hover {
    color: #1d4ed8;
  }

  .login-btn {
    background-color: #1d4ed8;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }

  .login-btn:hover {
    transform: scale(1.05);
    background-color: #2563eb;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }
   */


header {
  background-color:  #1d4ed8;
  color: #fff;
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-around;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #c1d0fa;
}

.login-btn {
  background-color:  #0fa2f7;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
  transform: scale(1.05);
  background-color:  #8fd3fa;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}


  .privacy-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
  }
  
  .privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .privacy-header h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .privacy-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 1rem auto;
    border-radius: 2px;
  }
  
  .privacy-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .privacy-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  }
  
  .section-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .section-header:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
  }
  
  .section-header h2 {
    font-size: 1.3rem;
    margin: 0;
  }
  
  .section-header .toggle-icon {
    transition: transform 0.3s ease;
  }
  
  .section-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .section-content.active {
    padding: 2rem;
    max-height: 1000px;
  }
  
  .section-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
  }
  
  .section-content ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-content li {
    margin-bottom: 0.5rem;
  }
  
 
  
  /* @media (max-width: 768px) { */
    /* .menu-toggle {
      display: block;
    }
    
    nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--primary);
      flex-direction: column;
      align-items: center;
      padding: 1rem 0;
      gap: 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    nav.active {
      max-height: 500px;
      padding: 1rem 0;
    }
    
    nav a {
      width: 100%;
      text-align: center;
      padding: 0.8rem 0;
    } */



  
      @media (max-width: 768px) {
  



         .header-container {
        padding: 1rem;
      }
      
      .menu-toggle {
        display: block;
      }
      
      nav {
        display: none;
        width: 100%;
        padding: 0;
      }
      
      nav.active {
        display: block;
      }
      
      nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
      }
      
      nav ul li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .login-btn {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
        text-align: center;
      }
      
    
    .privacy-header h1 {
      font-size: 2.2rem;
    }
    
    .section-header h2 {
      font-size: 1.1rem;
    }
    
    .section-content {
      padding: 0 1.5rem;
    }
    
    .section-content.active {
      padding: 1.5rem;
    }
  }
  
  /* Animation classes */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .animate-fade {
    animation: fadeIn 0.6s ease forwards;
  }
  
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }


  
  .footer {
    width: 100%;
    box-sizing: border-box;
    background-color:  black;
    color:whitesmoke;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 3rem;
  }
  
  .footer-links {
    margin-top: 10px;
  }
  
  .footer-links a {
    color:#0667ac;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
    color: #ffffff; /* White on hover */
  }
   .menu-toggle.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
