.current-status {
  margin: 2rem 0;
  text-align: center;
}

.status-card {
  background: linear-gradient(135deg, #4a98f7, #3167b3);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(74, 152, 247, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.status-card h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.status-badge {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.status-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.future-plans {
  margin: 3rem 0;
}

.future-plans h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: center;
}

.future-plans > p {
  text-align: center;
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.pricing-plan {
  background: #fff;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  min-width: 280px;
  max-width: 320px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.pricing-plan h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4a98f7;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: #7f8c8d;
  font-weight: normal;
}

.pricing-plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-plan li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ecf0f1;
  color: #34495e;
}

.pricing-plan li:last-child {
  border-bottom: none;
}

.pricing-plan li::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  margin-right: 0.5rem;
}

.pricing-note {
  background: #f8f9fa;
  border-left: 4px solid #4a98f7;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 8px 8px 0;
}

.pricing-note p {
  margin: 0.5rem 0;
  color: #2c3e50;
}

.pricing-note strong {
  color: #4a98f7;
}

.pricing-note a {
  color: #4a98f7;
  text-decoration: none;
  font-weight: 500;
}

.pricing-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-plan {
    min-width: 100%;
    max-width: 400px;
  }
  
  .status-card {
    padding: 1.5rem;
  }
} 