* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 7px 40px;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand__logo {
  height: 18px;
  width: auto;
}

.hero {
  display: flex;
  justify-content: center;
  background: #4c4c4c;
  padding: 100px 40px;
}

.hero__content {
  max-width: 1036px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
}

.hero__title {
  margin: 0;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 33px;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
}

.hero__image {
  margin: 0;
}

.hero__description {
  max-width: 1036px;
  text-align: center;
  color: #ffffff;
}

.hero__description p {
  margin: 0 0 27px;
  font-size: 18px;
  line-height: 27px;
}

.hero__description p:last-child {
  margin-bottom: 0;
}

.hero__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero__cta-title {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #ffffff;
}

.hero__cta-link {
  margin-left: 6px;
  color: #abc5ff;
  text-decoration: underline;
}

.hero__cta-copy {
  margin: 0;
  max-width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .hero {
    padding: 80px 24px;
  }

  .hero__content {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }

  .brand__mark {
    width: 140px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__description,
  .hero__cta-copy,
  .hero__cta-title {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 16px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__image img {
    width: 100%;
    height: auto;
  }
}
