body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0f100c;
  color: white;
  text-align: center;
}

.pricing-container {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 50px;
}

.button-container {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  padding: 20px;
  font-weight: bold;
  justify-content: center;
}

/* Base Button Style */
.tab-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Yellow Buttons */
.yellow {
  background-color: #bff747;
  color: black;
}

/* Dark Blue Buttons */
.dark-blue {
  background-color: #bff747;
  color: black;
}

/* Hover Effects */
.yellow:hover {
  background-color: white;
}

.dark-blue:hover {
  background-color: white;
}

.plan {
  background-color: #0f100c;
  border-radius: 10px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  border: 1px solid #bff747;
  text-align: left;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}

.price-section {
  text-align: center;
  margin-bottom: 15px;
}

h2 {
  font-size: 24px;
  font-weight: bold;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}

.subscribe {
  background: #bff747;
  border: none;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 15px;
  display: block;
  width: 100%;
}

.original-price {
  text-decoration: line-through;
  color: red;
  font-size: 18px;
  margin-right: 5px;
}

.discounted-price {
  font-size: 22px;
  font-weight: bold;
}

.discount {
  font-size: 14px;
  color: #bff747;
  font-weight: bold;
}

/* Responsive for Tablets */
@media (max-width: 1024px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .button-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .tab-button {
    font-size: 13px;
    padding: 8px 16px;
  }

  .plan {
    width: 80%;
  }

  ul li {
    gap: 20px;
  }
}

/* Responsive for Mobile Devices */
@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 20px;
  }

  .button-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    gap: 10px;
  }

  .tab-button {
    width: 100%;
    font-size: 12px;
    padding: 8px;
    text-align: center;
  }

  .plan {
    width: 95%;
    padding: 15px;
  }

  h3 {
    font-size: 16px;
  }

  h2 {
    font-size: 20px;
  }

  ul li {
    font-size: 14px;
    gap: 15px;
  }

  .subscribe {
    padding: 10px;
    font-size: 14px;
  }
}

/* Responsive for Small Mobile Screens */
@media (max-width: 480px) {
  .button-container {
    flex-direction: column;
    gap: 8px;
  }

  .tab-button {
    font-size: 12px;
    padding: 6px;
  }

  .plan {
    width: 100%;
    padding: 12px;
  }

  h3 {
    font-size: 14px;
  }

  h2 {
    font-size: 18px;
  }

  .subscribe {
    font-size: 13px;
    padding: 8px;
  }

  ul li {
    font-size: 12px;
    gap: 10px;
  }
}
