
  :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;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

 

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }

  h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 0.5rem;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
  }

  h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
  }

  p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
  }

  .section-intro {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
  }

  /* Table Styles */
  .table-container {
    overflow-x: auto;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
  }

  th, td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  tr:hover {
    background-color: #f1f4ff;
  }

  .highlight {
    background-color: rgba(70, 130, 180, 0.1);
    font-weight: 600;
  }

  .badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
  }

  .badge-free {
    background: #e0e0e0;
    color: #616161;
  }

  .badge-basic {
    background: #bbdefb;
    color: #0d47a1;
  }

  .badge-premium {
    background: #c8e6c9;
    color: #1b5e20;
  }

  .badge-bronze {
    background: #d7ccc8;
    color: #4e342e;
  }

  .badge-silver {
    background: #e0e0e0;
    color: #424242;
  }

  .badge-gold {
    background: #fff9c4;
    color: #ff8f00;
  }

  .badge-platinum {
    /* background: #e0f7fa; */
    color:red;
    background: rgb(243, 186, 186);
  }

  .badge-diamond {
    /* background: #f3e5f5; */
    color: blue;
    background: rgb(207, 207, 243);
  }

  .badge-elite {
    /* background: #ffebee; */
    color:black;
    background: rgb(146, 139, 139);
  }

  .note {
    background: #fff8e1;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
  }

  .note p {
    margin-bottom: 0;
    color: #5d4037;
  }



  /* Responsive Styles */
  @media (max-width: 992px) {
    h1 {
      font-size: 2.2rem;
    }
    
    h2 {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 768px) {
    .container {
      padding: 1.5rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.4rem;
    }
    
    th, td {
      padding: 1rem;
    }
  }

  @media (max-width: 576px) {
    .container {
      padding: 1rem;
    }
    
    h1 {
      font-size: 1.8rem;
    }
    
    h2 {
      font-size: 1.3rem;
    }
    
    th, td {
      padding: 0.8rem;
      font-size: 0.9rem;
    }
  }

  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate {
    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 */
  }
  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);
}


  @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;
  }
}
   .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);
    }

  