body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  
  color: #023246;
}

.coming-soon-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #D4E2EA 0%, #F2F2F2 100%);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  color: #215D7B;
}

.subtext {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  
  color: #08161E;
}

.gif-wrapper {
  margin-bottom: 40px;
}

.gif-wrapper img {
  max-width: 100%;
  height: 60vh;
  border-radius: 8px;
}

/* ✅ CTA buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.cta-btn {
  background-color: #215D7B;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #1a4961;
}

.cta-btn.secondary {
  background-color: transparent;
  border: 2px solid #215D7B;
  color: #215D7B;
}

.cta-btn.secondary:hover {
  background-color: #215D7B;
  color: white;
}

@media (max-width: 600px) {
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
