.cta-button {
  background-color: var(--sky-800);
  color:white;
}

.slate-700 {
  color: var(--slate-700);
}

.responsive-justify {
  /* Mobile First: Default to centered */
  justify-content: center;
}

/* For screens 768px and wider (tablets and desktops) */
@media (min-width: 900px) {
  .responsive-justify {
    justify-content: space-between;
  }
}

/* pricing section */ 
.pricing-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--slate-700);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.plan-header {
  text-align: center;
  margin-bottom: 25px;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--slate-700);
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-800);
  margin-bottom: 5px;
}

.plan-period {
  font-size: 0.9rem;
  opacity: 0.7;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.feature-item {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
}

.feature-check {
  color: #22c55e;
  margin-right: 8px;
  font-weight: bold;
}

.feature-cross {
  color: #d1d5db;
  margin-right: 8px;
}

.feature-highlight {
  font-weight: 600;
  color: var(--sky-800);
}

.featured-badge {
  background: var(--sky-800);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .pricing-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .pricing-header h2 {
      font-size: 2rem;
  }
}
