* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  header {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
  }
  
  header h1 {
    font-size: 2.5rem;
    font-weight: 600;
  }
  
  header p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .pricing {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .pricing-card.featured {
    border: 2px solid #1cc88a;
    transform: scale(1.05);
  }
  
  .pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .pricing-card h2 {
    color: #4e73df;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .pricing-card .price {
    font-size: 2.2rem;
    color: #1cc88a;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .pricing-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 15px 0;
  }
  
  .pricing-card ul li {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .pricing-card ul li:last-child {
    border-bottom: none;
  }
  
  .button {
    display: inline-block;
    background-color: #4e73df;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #1cc88a;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    border-radius: 8px;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .pricing {
      flex-direction: column;
      align-items: center;
    }
  
    .pricing-card {
      width: 90%;
    }
  }
  


  .me {
    text-align: center; /* Center aligns the link */
    margin-top: 20px;  /* Adds spacing above the div */
  }
  
  .me a {
    text-decoration: none;  /* Removes the underline from the link */
    font-size: 1.2rem;  /* Adjusts the font size */
    color: #4e73df;  /* Sets the text color */
    padding: 10px 20px;  /* Adds padding around the link */
    border: 2px solid #4e73df;  /* Adds a border to the link */
    border-radius: 5px;  /* Rounds the corners */
    transition: all 0.3s ease;  /* Adds a smooth transition for hover effects */
    background-color: black;
  }
  
  .me a:hover {
    background-color: #4e73df;  /* Changes background color on hover */
    color: white;  /* Changes text color on hover */
  }
  