@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #f8f4e7;
  color: #000;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

@media screen and (min-width: 500px) {
  .body {
    font-size: 18px;
  }
}

p {
  line-height: 1.75;
  text-wrap: pretty;
}

strong {
  font-weight: 700;
}

a {
  color: #694270;
  font-weight: 700;
  text-decoration: none;
}

.title {
  font-weight: 900;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 20px;
  text-wrap: balance;
}

@media screen and (min-width: 500px) {
  .title {
    font-size: 48px;
  }
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding: 40px 24px;
  text-align: center;
}

@media screen and (min-width: 500px) {
  .main {
    padding: 60px 24px;
  }
}

.header {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 500px) {
  .header {
    margin-bottom: 50px;
  }
}

.header__arrow {
  opacity: 0.5;
  width: 30px;
}

@media screen and (min-width: 500px) {
  .header__arrow {
    width: 50px;
  }
}

.header__eat-impact {
  height: 40px;
  width: 140px;
}

@media screen and (min-width: 500px) {
  .header__eat-impact {
    height: 57px;
    width: 200px;
  }
}

.header__mama-earth {
  height: 55px;
  margin-top: -15px;
  position: relative;
  width: 98px;
}

@media screen and (min-width: 500px) {
  .header__mama-earth {
    height: 78px;
    width: 140px;
  }
}

.callout {
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 700px;
}

@media screen and (min-width: 500px) {
  .callout {
    font-size: 22px;
  }
}

.description {
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 700px;
}

.ctas {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn {
  border-radius: 12px;
  display: block;
  font-weight: 700;
  min-width: 230px;
  padding: 16px 20px;
  text-decoration: none;
  transition: transform 100ms;
}

.btn:active {
  transform: scale(0.97);
}

.btn--solid {
  background-color: #694270;
  color: #fff;
}

.btn--outline {
  outline: 3px solid #694270;
  outline-offset: -2px;
  color: #694270;
}

.separator {
  height: 21px;
  margin: 50px auto;
  max-width: 1446px;
  opacity: 0.15;
  width: 100%;
}

.faq {
  margin: 0 auto;
  max-width: 700px;
}

.faq__title {
  font-weight: 900;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 30px;
}

.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq__question {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  text-wrap: pretty;
}

@media screen and (min-width: 500px) {
  .faq__question {
    font-size: 22px;
  }
}

.faq__answer {
  text-wrap: pretty;
}