
.coming-soon-preview {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  transition: all 0.6s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

.coming-soon-preview.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.coming-container {
  max-width: 680px;
  margin: 0 auto;
}

.coming-soon-preview h3 {
  font-size: 1.5rem;
  color: #2b3e3e;
  font-weight: 600;
  margin-bottom: 16px;
}

.coming-soon-preview p {
  font-size: 1rem;
  color: #4e5f5e;
  line-height: 1.6;
  margin-bottom: 24px;
}

.coming-soon-preview .cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #2c4d4d;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.coming-soon-preview .cta-button:hover {
  background-color: #1f3737;
}

@media (max-width: 768px) {
  .coming-soon-preview h3 {
    font-size: 1.3rem;
  }

  .coming-soon-preview p {
    font-size: 0.95rem;
  }

  .coming-soon-preview .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .desktop-only {
    display: none;
  }
}
