.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .pricing-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

.pricing-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background-color: #fff;
}

.featured {
  border: 2px solid #0d6efd;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 1rem 0 0.2rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  color: #0d6efd;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #0d6efd;
  background-color: transparent;
  color: #0d6efd;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Switch toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0d6efd;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.tp-slider-title {
  font-size: 36px !important;
}


.grecaptcha-badge {
  bottom: 10px !important;
  right: 10px !important;
  transform: scale(0.75); /* shrink slightly */
}

#back_to_top {
  display: none !important;
}