/* Plan Cards */
.plan-card {
  background: var(--light-dark);
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-10px);
}

.plan-header {
  background: var(--blue);
  padding: 20px;
  color: var(--white);
  text-align: center;
}

.plan-header h3 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 24px;
}

.plan-header .h4 {
  font-weight: 700;
  color: var(--white);
}

.plan-header .sup-month {
  font-size: 16px;
  font-weight: 400;
}

.plan-card .card-body {
  padding: 25px;
  color: var(--light);
}

.plan-card .card-body ul {
  margin-bottom: 20px;
}

.plan-card .card-body li {
  margin-bottom: 10px;
  font-size: 15px;
}

.plan-card .card-body strong {
  color: var(--white);
  font-weight: 600;
}

.plan-card .btn {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.plan-card .btn:hover {
  background: var(--dark);
  border-color: var(--blue);
}

@media (max-width: 768px) {
  .plan-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .plan-card:hover {
    transform: none;
  }
}