/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #333;
  text-align: center;
}

header {
  background: #4caf50;
  color: white;
  padding: 20px;
}

/* Toggle */
.toggle {
  margin: 20px 0;
}

.toggle button {
  background: #ddd;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}

.toggle button.active {
  background: #4caf50;
  color: white;
}

/* Pricing Cards */
.pricing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
  position: relative;
  text-align: left;
}

.card h2 {
  margin-top: 0;
  color: #333;
}

.card p {
  color: #666;
}

/* Ribbon for Popular Plan */
.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff5722;
  color: white;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  transform: rotate(10deg);
  border-radius: 5px;
}

/* Price Styling */
.price {
  margin: 15px 0;
  font-size: 1.2rem;
}

.price .old {
  color: #888;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 1rem;
}

.price .new {
  color: #ff5722;
  font-weight: bold;
  font-size: 1.3rem;
}

.price .discount {
  display: block;
  font-size: 0.85rem;
  color: #4caf50;
  margin-top: 4px;
}
/* Disclaimer Box */
.disclaimer {
  max-width: 800px;
  margin: 30px auto;
  padding: 15px 20px;
  background: #e8f5e9; /* soft green background */
  border-left: 5px solid #4caf50; /* matches theme green */
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  text-align: left;
}

.disclaimer strong {
  color: #4caf50;
}

.disclaimer em {
  color: #ff5722;
}


/* Features */
.features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.features li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

/* Button */
.btn {
  background: #4caf50;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #45a049;
}

.badge {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 8px;
  color: #555;
}
