.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px auto;
  max-width: 1000px;
}

.pricing-card {
  background-color: #3a3a3a;
  border: 2px solid #555;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 80px;
}

.pricing-card:hover {
  border-color: #07f7ff;
}

.pricing-card.selected {
  background-color: #07f7ff;
  border-color: #07f7ff;
}

.pricing-card.selected .pricing-info h3,
.pricing-card.selected .pricing-info .features,
.pricing-card.selected .price {
  color: #000;
}

.pricing-info {
  flex: 1;
  text-align: left;
}

.pricing-card h3 {
  margin: 0 0 5px 0;
  color: #07f7ff;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.features {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #fff;
}

.features li {
  display: inline;
  margin-right: 5px;
}

.price {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  margin-left: 30px;
  text-align: right;
}

.price-period {
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
}

.am-cart {
  display: none;
}

.continue-button-container {
  text-align: center;
  margin: 30px 0;
}

.continue-button {
  background-color: #07f7ff;
  color: #000;
  border: none;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  opacity: 0.5;
  pointer-events: none;
}

.continue-button.active {
  opacity: 1;
  pointer-events: auto;
}

.continue-button.active:hover {
  background-color: #12dde4;
}
@media (max-width: 768px) {
  .pricing-card {
    padding: 15px 20px;
  }
  
  .pricing-card h3 {
    font-size: 18px; /* Reduced from 24px */
    line-height: 1.2;
  }
  
  .features {
    font-size: 12px;
  }
  
  .price {
    font-size: 24px; /* Reduced from 32px */
    margin-left: 15px; /* Reduced from 30px */
  }
  
  .price-period {
    font-size: 14px; /* Reduced from 18px */
  }
}

@media (max-width: 480px) {
  .pricing-card h3 {
    font-size: 16px; /* Even smaller for very small screens */
  }
  
  .price {
    font-size: 20px;
  }
}