.custom-pricing-main {
  padding: 100px 0px;
}

.custom-pricing-card {
  background-color: #f2f2f2;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  padding: 30px;
  /* border: 1px solid rgb(19, 16, 16); */
  /* text-align: center; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.custom-pricing-cost {
  margin: 0;
  padding: 0;
}

.custom-pricing-cost-wrapper {
  display: flex;
  /* justify-content: center; */
  align-items: baseline;
  margin-bottom: 20px;
}

.custom-pricing-cost {
  font-size: 35px;
  font-weight: 800;
  color: #2a1fbc;
}

.custom-pricing-validity {
  font-size: 19px;
  color: #2a1fbc;
  margin-top: 5px;
  font-style: italic;
}

.custom-pricing-card-header {
  margin-top: 20px;
}

.custom-pricing-card-title {
  font-size: 26px;
  font-weight: bold;
  color: #070707;
}

.custom-pricing-card-body {
  margin-top: 20px;
}

.custom-pricing-description-text {
  font-size: 18px;
  color: #0f0d0d;
  margin-bottom: 20px;
  font-style: italic;
}

.custom-pricing-features-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.custom-pricing-features-list li {
  font-size: 16px;
  color: #0c0a0a;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-pricing-features-list li.disabled {
  color: #949494;
  text-decoration: line-through;
}

.custom-pricing-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #2a1fbc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #2a1fbc;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.custom-pricing-button:hover {
  background-color: #2a1fbc;
  color: #fff;
}

/* Responsive Styles */
/* @media (max-width: 768px) {
  .custom-pricing-card {
    margin-bottom: 20px;
  }
} */
/* 
@media (max-width: 576px) {
  .custom-pricing-cost {
    font-size: 40px;
  }

  .custom-pricing-card-title {
    font-size: 20px;
  }
} */
