* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0B1C2D;
  color: #FFFFFF;
  line-height: 1.6;
}
.hero {
  padding: 80px 20px 40px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.1rem;
  color: #C7CCD1;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.95rem;
  color: #C7CCD1;
}

.video-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.video-container {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  background-color: #000;
}

.content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  color: #C7CCD1;
}

.content-wrapper p {
  margin-bottom: 18px;
}

.content-wrapper .highlight {
  color: #FFFFFF;
  font-weight: bold;
}

.cta-section {
  text-align: center;
  padding: 60px 20px 80px;
}

.cta-microcopy {
  font-size: 0.9rem;
  color: #C7CCD1;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #F7931E;
  color: #0B1C2D;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
  }
}
