  /* Pricing Table 
.pricing-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  background: white;
  overflow: hidden;
  border-radius: 12px;
}

.pricing-table thead {
  background-color: rgb(69, 34, 98);
  color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  background-color: #f1f5f9;
  font-weight: 500;
}

.pricing-table th {
  font-size: 1.1rem;
}

.check {
  color: #2ecc71;
  font-size: 1.4rem;
}

.cross {
  color: #ccc;
  font-size: 1.4rem;
}
*/

/*Pricing cards*/

.pricing-cards-section {
  padding: 20px 20px;
  text-align: center;
  background: #f8fafc;
  border-radius: 5%;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.pricing-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  position: relative;
  transition: 0.3s ease;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.summary {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555;
}

.card-details {
  display: none;
  margin-top: 10px;
}

.card-details ul {
  padding-left: 18px;
  font-size: 0.9rem;
  color: #444;
}

.toggle-btn {
  margin-top: 15px;
  padding: 8px 14px;
  border: none;
  background: #452262;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.toggle-btn:hover {
  opacity: 0.9;
}

.featured {
  border: 2px solid #452262;
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #452262;
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 20px;
}

/*Pricing table*/

.pricing-section {
  padding: 60px 20px;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
}

.pricing-table thead {
  background: #452262;
  color: #fff;
}

.pricing-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  background: #f8fafc;
  font-weight: 500;
}

.section-row td {
  background: #eef2f7;
  font-weight: 600;
  text-align: left;
}

.expandable {
  display: none;
}

.read-more-container {
  margin-top: 20px;
}

#toggleBtn {
  padding: 10px 20px;
  border: none;
  background: #452262;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.2s ease;
}

#toggleBtn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    font-size: 14px;
    padding: 12px;
  }
}