/* General Styles */
.body-content {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 0;
}

.heading {
  text-align: center;
  margin-top: 30px;
  color: #333;
}

/* Pricing Section */
.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.plans-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.plan-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  width: 280px;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
}

.plan-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #007bff;
}

.plan-price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.features-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.feature-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.select-plan-button {
  text-decoration: none;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

.select-plan-button:hover {
  background-color: #0056b3;
}

/* Special Plan Highlight */
.limited-plan {
  background-color: #ffefc1;
  border-color: #ffc107;
}

.limited-plan .note {
  font-size: 12px;
  font-weight: bold;
  color: #d9534f;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffc107;
  padding: 5px;
  border-radius: 5px;
}

/* Best Selling Plan Highlight */
.best-seller-plan {
  border: 2px solid #007bff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.best-seller-plan .badge {
  background-color: #007bff;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 400px;
  }
}
