.pricing-table {
  padding: 80px 0;
  color: #fff;
}

.pricing-table .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}

.pricing-table .flex {
  display: flex;
}

.pricing-table .flex-align-center {
  align-items: center;
}

.pricing-table .flex-justify-between {
  justify-content: space-between;
}

.pricing-table .flex-justify-center {
  justify-content: center;
}

.pricing-table .column {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.pricing-table .content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.pricing-table .text-secondary {
  color: #f4623a !important;
}

.pricing-table .table-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table .table {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.pricing-table .thead, .pricing-table .row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.pricing-table .thead p {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.pricing-table .tbody .row p {
  margin-bottom: 0;
}

.pricing-table .row.highlight {
  background: #f4623a;
  font-weight: 700;
}

.pricing-table .price {
  display: none;
}

.pricing-table .price.active {
  display: inline;
}

.pricing-table .tfoot {
  display: flex;
  justify-content: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
}

.pricing-table .tfoot p {
  margin: 0 15px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  font-size: 1.2rem;
}

.pricing-table .tfoot p.active {
  opacity: 1;
  color: #f4623a;
}

@media (max-width: 768px) {
  .pricing-table .column {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .pricing-table .thead p, .pricing-table .row p {
    font-size: 0.8rem;
  }
}

