* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}

.coming-soon-page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.hero-image {
  width: 100%;
  
  object-fit: cover;
  object-position: center;
  display: block;
}

.mobile-overlay {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    align-items: flex-start;
  }

  .hero-image {
    height: auto;
    min-height: 100vh;
    object-fit: contain;
    object-position: top center;
    background: #ffffff;
  }

  .mobile-overlay {
    display: block;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 28px;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  }

  .mobile-overlay h1 {
    font-size: 30px;
    line-height: 1.1;
    color: #001d4f;
    margin-bottom: 6px;
  }

  .mobile-overlay p {
    font-size: 15px;
    font-weight: 700;
    color: #e60023;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .mobile-overlay span {
    display: inline-block;
    font-size: 28px;
    line-height: 1;
    color: #1f3c88;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
  }
}

@media (max-width: 480px) {
  .hero-image {
    object-fit: cover;
    object-position: center top;
  }

  .mobile-overlay h1 {
    font-size: 26px;
  }

  .mobile-overlay span {
    font-size: 24px;
  }
}
