/* Coming Soon Page Style */
.coming-soon-page {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px !important;
  text-align: center;
}

/* Overlay */
.coming-soon-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
}

/* Content above overlay */
.coming-soon-page > * {
  position: relative;
  z-index: 2;
}

/* Heading */
.coming-soon-page h4 {
  font-size: 64px;
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Paragraph */
.coming-soon-page p {
  color: black;
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}



/* Mobile */
@media (max-width: 768px) {
  .coming-soon-page h4 {
    font-size: 34px;
  }

  .coming-soon-page p {
    font-size: 14px;
  }
}
