* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Serif 4", serif;
}

html,
body {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

header {
  max-width: 1140px;
  padding: 0px 0px;
  margin: 36px auto 24px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #c8952a;
}

.header-logo img {
  height: 40px;
}

.header-button a {
  display: block;
  padding: 4px 16px;
  background: #c8952a;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
}

footer {
  padding: 40px 200px;
  background: #221701;
margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.copyright {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  text-align: center;

  color: #aba8a8;
}

.bold-footer-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;

  color: #C8952A;
}

.footer-text,
.footer-list {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;

  color: #ffffff;
}

.text-container,
.text-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;

  list-style: none;
}

.footer-columns {
  display: flex;
  gap: 20px;
}

.text-column-small {
  width: 25%;
}

.text-column-big {
  width: 50%;
}

@media (max-width: 900px) {
  header {
    padding: 0px 16px;
  }
  
footer {
  padding: 40px 16px;}

  .footer-columns {
    flex-direction: column;
  }

  .text-column-big {
    width: 100%;
  }

  .text-column-small {
    width: 245px;
  }
}

main {
  max-width: 1140px;
  padding: 0px 0px;
  margin: 0 auto;
}

.main-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 26px;
}

.main-top-part {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid #c8952a;
}

.headline-1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  text-align: center;
  color: #332f2f;
  max-width: 941px;
  margin: 0 auto;
}

.main-top-part img {
  width: 100%;
}

.main-top-part p {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  max-width: 941px;
  margin: 0 auto;
  color: #231f1f;
}

.main-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card {
  padding: 24px;
  background-color: #FAF7F2;
  border-bottom: 1px solid #FFC374;
}

.card img {
  width: 100%;
  margin-bottom: 24px;
}

.card-meta {
  font-size: 14px;
  font-weight: 700;

  color: #734F04;
  text-transform: uppercase;
margin-bottom: 4px;
}

.card-body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.card-number {
  font-size: 64px;
  font-weight: 700;
  color: #F5E6C8;
  line-height: 1;
  min-width: 36px;

}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  color: #332F2F;

margin-bottom: 24px;
}

.card-text {
  font-size: 20px;
  color: #332F2F;
  line-height: 23px;
margin-bottom: 16px;
}

.card-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #C8952A;
  text-decoration: underline;

}



@media (max-width: 900px) {
  main {
    padding: 0px 16px;
  }
  .headline-1 {
    font-size: 32px;
    line-height: 36px;
  }

  .main-top-part p {
    font-size: 20px;
    line-height: 23px;
  }

.card-body {
flex-direction: column;
gap: 8px;
}
 
 
}
