body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .plans {
    text-align: center;
    padding: 50px 0;
  }
  
  .plan-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .plan {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }
  
  .plan h3 {
    color: #333;
  }
  
  .price {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: rgb(190, 26, 116);
  }
  
  nav {
    background: #fff;
    color: #32424d;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .nav-links {
    list-style-type: none;
    display: flex;
  }
  
  .nav-links li {
    margin-right: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #01016df0;
    font-size: 18px;
  }
  
  .nav-links li a:hover {
    color: #e77dd7;
  }
  center h1{
    color: #fff;
  }
 

.plan {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; 
  }
  
  .plan:hover {
    transform: scale(1.05);
  }
  
  
  @media (max-width: 768px) {
    body {
      font-size: 14px;
    }
  
    nav {
      padding: 10px; 
    }
  
    .logo {
      font-size: 20px; 
    }
  
.menu-toggle {
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    display: none;
}

.nav-links.active {
    display: block; 
}


.bronze-plan {
    background-color: #ffcc00; 
    color: #000000; 
  }
  
  .bronze-plan .plan-image {
    text-align: center; 
    margin-bottom: 20px; 
  }
  
  .bronze-plan .plan-image img {
    width: 200px;
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); 
  }
  
  body {
    font-family: Arial, sans-serif;
    background: rgb(190, 26, 116);
  }

  nav {
    background: #fff;
    color: #32424d;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
  }

  .logo {
    font-size: 24px;
  }

  .nav-links {
    list-style-type: none;
    display: flex;
  }

  .nav-links li {
    margin-right: 20px;
  }

  .nav-links li a {
    text-decoration: none;
    color: #01016df0;
    font-size: 18px;
  }

  .nav-links li a:hover {
    color: #e77dd7;
  }

  center h1 {
    color: #fff;
  }


  .plan {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; 
    flex: 1; 
  }

  .plan:hover {
    transform: scale(1.05); 
  }

  .advanced-plan {
    background-color: #007bff;
    color: #fff; 
    flex: 2; 
  }

  .advanced-plan .plan-image {
    text-align: center; 
    margin-bottom: 20px; 
  }

  .advanced-plan .plan-image img {
    width: 200px; 
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }
  .plan-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px;
    margin-top: 30px;
  }
@media (max-width: 768px) {
    body {
      font-size: 14px; 
    }
  
    nav {
      padding: 10px; 
    }
  
    .logo {
      font-size: 20px; 
    }
  
    .menu-toggle {
      display: block; 
    }
  
    .nav-links {
      display: none; 
    }
  
    .nav-links.active {
      display: flex; 
    }
  }
  
  .menu-toggle {
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
  }
}