:root {
    --primary: #4361ee;
    --primary-dark: #3a0ca3;
    --secondary: #f72585;
    --accent: #4cc9f0;
    --dark: #14213d;
    --light: #f8f9fa;
    --text: #2b2d42;
    --text-light: #6c757d;
    --success: #38b000;
    --warning: #ffaa00;
    --error: #ef233c;
    --bg-gradient: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: #f8f9fa;
    overflow-x: hidden;
  }
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);
}

 
 
  html {
    scroll-behavior: smooth;
  }
  
  /* Header styles */
 
  
  /* Main content styles */
  .privacy-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
  }
  
  .privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .privacy-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
  }
  
  .privacy-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .privacy-header::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: var(--bg-gradient);
    margin: 1.5rem auto;
    border-radius: 5px;
    animation: scaleX 1s ease forwards;
  }
  
  /* Section styles */
  .privacy-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .privacy-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .section-header {
    padding: 1.8rem 2.5rem;
    background: var(--bg-gradient);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255,255,255,0.3) 0%,
      rgba(255,255,255,0) 60%
    );
    transform: rotate(30deg);
    transition: all 0.5s ease;
  }
  
  .section-header:hover::before {
    left: 100%;
  }
  
  .section-header h2 {
    font-size: 1.4rem;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  
  .toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .section-content {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s ease;
  }
  
  .section-content.active {
    padding: 2.5rem;
    max-height: 2000px;
  }
  
  .section-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
  }
  
  .section-content ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .section-content li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    position: relative;
  }
  
  .section-content li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  /* Footer styles */
 
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scaleX {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
  
  /* Delay classes for animations */
  .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; }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .privacy-header h1 {
      font-size: 2.8rem;
    }
  }
  
  @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;
    }
    
    .privacy-header p {
      font-size: 1rem;
    }
    
    .section-header {
      padding: 1.5rem;
    }
    
    .section-header h2 {
      font-size: 1.2rem;
    }
    
    .section-content {
      padding: 0 1.5rem;
    }
    
    .section-content.active {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .privacy-header h1 {
      font-size: 2rem;
    }
    
    .privacy-container {
      padding: 0 1.2rem;
    }
    
    .section-header {
      padding: 1.2rem;
    }
    
    .section-content {
      padding: 0 1.2rem;
    }
    
    .section-content.active {
      padding: 1.2rem;
    }
  }
  
  /* Floating animation for visual interest */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .floating {
    animation: float 4s ease-in-out infinite;
  }
  
  /* Pulse animation for interactive elements */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .pulse:hover {
    animation: pulse 1.5s infinite;
  }
  
  .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);
    }
  
 