.membership-hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
  z-index: 1;
}

.membership-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
}

.card-pricing {
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}
.card-pricing:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-color: #20b993 !important;
}
.card-pricing .card-body {
  padding: 2rem 1.5rem;
}

.plan-card {
    border-radius: 15px;
    overflow: hidden;
}

.plan-card-banner {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.plan-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-card-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    text-align: center;
}

.plan-card-banner-name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-card-banner-price {
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-card-banner-price small {
    font-size: 0.875rem;
    opacity: 0.9;
}