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

body {
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.hero {
  display: flex;
  min-height: 100vh;
}

.hero-image {
  width: 42%;
}

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

.hero-content {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.top-label {
  font-size: 14px;
  letter-spacing: 1px;
  color: #cccccc;
  margin-bottom: 30px;
}

h1 {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-text {
  font-size: 20px;
  color: #d0d0d0;
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 36px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #e7e7e7;
}

.info-section {
  display: flex;
  padding: 65px 80px;
  border-top: 1px solid #222;
}

.info-left {
  width: 36%;
  padding-right: 60px;
}

.info-right {
  width: 64%;
  padding-left: 70px;
}

.info-section h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 30px;
}

.info-section p,
.info-section li {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.8;
}

.info-section ul {
  list-style-position: inside;
  max-width: 760px;
}

.info-right p {
  max-width: 700px;
}

.info-section li {
  margin-bottom: 14px;
}

.final-cta {
  text-align: center;
  padding: 90px 40px;
  border-top: 1px solid #222;
}

.final-cta h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 17px;
  color: #d0d0d0;
  margin-bottom: 30px;
  line-height: 1.8;
}

footer {
  text-align: center;
  padding: 30px;
  color: #888;
  border-top: 1px solid #222;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 52px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-image,
  .hero-content {
    width: 100%;
  }

  .hero-image {
    height: 60vh;
  }

  .hero-content {
    padding: 50px 30px;
  }

  h1 {
    font-size: 42px;
  }

  .info-section {
    flex-direction: column;
    padding: 60px 30px;
  }

  .info-left,
  .info-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .info-left {
    margin-bottom: 30px;
  }

  .info-section h2 {
    font-size: 26px;
  }

  .info-section p,
  .info-section li {
    font-size: 17px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta p {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
  }

  .hero-text,
  .info-section p,
  .info-section li,
  .final-cta p {
    font-size: 16px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}