sup {
	font-size: 10px;
}

.pricing-container {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pricing-block {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      flex: 1 1 250px;
      text-align: center;
    }

    .pricing-block h2 {
      margin-top: 0;
      color: #333;
    }

    .price {
      font-size: 1.8rem;
      font-weight: bold;
      color: #007bff;
      margin: 0.5rem 0;
    }

    .features {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0 0;
      text-align: left;
    }

    .features li {
      padding: 0.3rem 0;
      border-bottom: 1px solid #eee;
    }

    .custom-plan {
      width: 100%;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
		border: 20px solid white;
    }

    .custom-plan h2 {
      text-align: center;
      margin-top: 0;
      margin-bottom: 0.5rem;
    }
	 .custom-plan h3 {
      text-align: center;
	  color: #007bff;
      margin-top: 0;
      margin-bottom: 1.5rem;
    }

    .module-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    .module {
      background: #f1f3f5;
      border-radius: 8px;
      padding: 1rem;
    }

    .module h4 {
      margin: 0 0 0.5rem 0;
      color: #222;
    }

    .module p {
      margin: 0.5rem 0;
      font-size: 0.95rem;
    }

    .module .module-price {
      font-weight: bold;
      color: #28a745;
    }
	
	
.sub-module {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #ccc;
}

.sub-module:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sub-module strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
	
	.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.75rem;
  font-size: 1rem;
  color: #333;
}

/* Slider switch style */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #28a745;
}

input:checked + .slider::before {
  transform: translateX(24px);
}

.choose-button {
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.choose-button:hover {
  background-color: #0056b3;
}

.choose-button.small {
  background-color: #28a745;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.choose-button.small:hover {
  background-color: #1e7e34;
}
.add-button {
  margin-top: 0.5rem;
  padding: 0.4rem 0.9rem;
  background-color: #ffc107;
  color: #212529;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-button:hover {
  background-color: #e0a800;
}