/* Paste your full frontend (port 3000) hero section CSS code here. */

/* Example structure: */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}
.hero-content {
  max-width: 600px;
  color: #fff;
  padding: 40px 0 40px 40px;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero-content .btn {
  margin-right: 16px;
  padding: 16px 32px;
  font-size: 1.1rem;
}
.hero-image {
  width: 45vw;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
@media (max-width: 991.98px) {
  .hero-section {
    flex-direction: column;
    padding: 40px 0;
  }
  .hero-image {
    width: 80vw;
    max-width: 90vw;
    margin: 0 auto 24px auto;
  }
  .hero-content {
    padding: 0 20px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 20px 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1.1rem;
  }
  .hero-image {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
}
