/* Layout */
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 1rem;
}

/* Card */
.pricing-card {
  background: #fff;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.pricing-card:hover {
  transform: translateY(-5px);
}

/* Image */
.pricing-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Content */
.pricing-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.period {
  font-size: 1rem;
  color: #666;
}

.features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.features li {
  margin-bottom: 0.75rem;
}

/* Button */
.btn {
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn:hover {
  background: #333;
}

.pricing-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 0 auto 2rem auto; /* centers it and adds bottom margin */
    max-width: 600px;          /* limits width for cleaner layout */
    text-align: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.pricing-warning h2 {
    margin: 0;
    color: #856404;
    font-size: 1.25rem;
}

.pricing-warning p {
    margin-top: 0.5rem;
    color: #856404;
    font-size: 1rem;
}