.bundle-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 60vh;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.pricing-card {
  background-color: white;
  border: 2px solid #17A2B8;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  width: 100%;
  transition: box-shadow 0.15s ease-in-out;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.pricing-card:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.pricing-card.premium,
.pricing-card.professional,
.pricing-card.enterprise {
  border-color: #17A2B8; /* Use the same color scheme for all */
}

.most-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #E5F4F9;
  color: #17A2B8; /* Unified color scheme */
  padding: 0.5rem 0.75rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 0.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.most-popular-badge.premium,
.most-popular-badge.professional,
.most-popular-badge.enterprise {
  background-color: #E5F4F9;
  color: #17A2B8; /* Use the same color scheme for all */
}

.card-content {
  padding-top: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cme-hours-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  text-align: center;
}

.popular-badge {
  background-color: #17A2B8;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: auto;
}

.price-section {
  margin: 1.5rem 0;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}

.price-original {
  font-size: 1.25rem;
  color: #6C757D;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.price-savings {
  color: #17A2B8;
  font-weight: 500;
  margin-left: 0.5rem;
}

.feature-boxes {
  margin-bottom: 1.5rem;
}

.feature-box {
  background-color: #E5F4F9;
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #DEE2E6;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.feature-box.premium,
.feature-box.professional,
.feature-box.enterprise {
  background-color: #E5F4F9;
}

.feature-icon {
  font-size: 1.25rem;
  color: #6C757D;
  margin-right: 0.75rem;
  width: 20px;
}

.feature-value {
  font-weight: 500;
}

.whats-included {
  margin-bottom: 1.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.check-mark {
  color: #17A2B8; /* Unified color scheme */
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.check-text {
  color: #212529;
}

.pricing-card-form {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

.select-button {
  background-color: #17A2B8;
  color: white;
  border: none;
  width: 100%;
  padding: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

.select-button:hover {
  background-color: #138496;
  color: white;
  text-decoration: none;
}

.select-button.disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.select-button.disabled:hover {
  background-color: #6c757d;
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #212529;
}

@media (max-width: 1200px) {
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .bundles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bundle-container {
    padding: 2rem 1rem;
  }
}
