
.membership-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.left-content {
  max-width: 50%;
}

.membership-benefit-card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
  margin: auto;
  color: #333;
  text-align: center;
  transition: all 0.3s ease-in-out;
  height:100%;
  display:flex;
flex-direction: column;
justify-content: space-between;
  width:100%;
}

.membership-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 16px 0px;
}

.membership-benefit-card .membership-name  {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #333;
}


.membership-benefit-card .membership-price-details a,
.membership-benefit-card .membership-price-details {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 15px;
  color:black;
  text-decoration:none;
}

.membership-benefit-card .membership-price-details a{
 font-size:1.4rem;
  font-weight:700;
}

.membership-benefit-card .benefits {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: left; 
}

.membership-benefit-card .benefits a{
  color:red;
  font-size:inherit;
}

.membership-benefit-card .button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(140deg, #f58832, #ed2c2b);
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  border:none;
  width:100%;
}

.membership-benefit-card .button:hover {
  background: linear-gradient(140deg, #ed2c2b, #f58832);
  transform: scale(1.05);
}


.right-content {
  display: flex;
 flex-direction: column;
  gap:1rem;
}

.right-content .right-content-title p,
.right-content .right-content-title {
 color:white;
  margin-bottom:0px;
  font-size:1.5rem;
}

.right-content .right-content-description a,
.right-content .right-content-description {
 color:white;
  margin-bottom:0px;
  font-size:1rem;
}


.membership-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}



/* Responsive Design */
@media (max-width: 768px) {
  .membership-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-content, .right-content {
    max-width: 100%;
  }

  .membership-image {
    max-width: 90%;
  }