@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  color: black;
}

.pricing-table {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.plan-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  width: 300px;
  background: #f9f9f9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.best-value h3 {
 
  color: #ffffff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}

.plan-card h3 {
  font-size: 1.4rem;
  color: #008000;
  margin: 0;
}

.plan-card .tagline {
  font-size: 1rem;
  color: #666;
  margin: 10px 0 15px;
}

.price-box {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.offer-price {
  font-weight: bold;
  display: block;
  color: black;
}

.mrp {
  font-size: 0.95rem;
  color: #999;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #990000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 15px 0;
  font-weight: bold;
}

.features {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 15px;
}

.features li {
  color: #008000;
  margin-bottom: 8px;
}


.product-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}