* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #111111;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.hero__content h1 {
  margin: 0 0 24px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
}

.hero__text {
  font-size: 22px;
  line-height: 1.4;
}

.hero__text p {
  margin: 8px 0;
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-end;
    padding: 24px;
  }

  .hero__content {
    padding-bottom: 32px;
  }

  .hero__content h1 {
    font-size: 36px;
  }

  .hero__text {
    font-size: 18px;
  }
}