body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #131313;
  background: #fff;
}
.logo {
  height: 98px;
  width: auto;
}
.hero {
  width: 100vw;
  min-height: 90vh;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  background: url("img/bg.png") no-repeat center center/cover;
}
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 515px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  max-width: 1024px;
  text-align: center;
  margin: 0 auto;
  padding-top: 32px;
  z-index: 2;
}
.hero p {
  padding-top: 24px;
  color: #224316;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  margin: 0;
}

.about {
  padding: 64px;
  max-width: 1024px;
  margin: 0 auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}
footer {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.footer-content {
  padding: 64px 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-top: 1px solid #e0e0e0;
}

@media screen and (max-width: 992px) {
  /* Tablet ve küçük ekranlar */
  .hero-content {
    padding-right: 24px;
    padding-left: 24px;
  }
  .hero p {
    font-size: 24px;
    line-height: 36px;
  }
  .about {
    font-size: 14px;
    line-height: 22px;
  }
  .footer-content {
    font-size: 12px;
    padding: 24px;
  }
}

@media screen and (max-width: 768px) {
  /* Mobil */
  .about {
    padding: 40px;
  }
  .hero p {
    font-size: 20px;
    line-height: 30px;
  }
  .about {
    font-size: 16px;
    line-height: 22px;
  }
  .footer-content {
    font-size: 14px;
    padding: 24px;
  }
}
