* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.header {
  background-color: #58a795;
  padding: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .header {
    padding: 20px 15px !important;
  }
  .header .logo {
    font-size: 20px !important;
  }
  .header .nav-links {
    font-size: 12px !important;
    justify-content: flex-end;
  }
  .header .nav-links a {
    margin-left: 20px !important;
  }
}
.header .logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.header .nav-links {
  flex: 1;
  display: flex;
}
.header .nav-links a {
  margin-left: 32px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.header .nav-links a:last-child {
  margin-left: auto;
}
.banner {
  margin: 40px 0;
  margin-bottom: 0;
  padding: 60px;
  padding-bottom: 0;
  background-color: #58a795;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  color: #fff;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .banner {
    text-align: center;
    padding: 30px !important;
    padding-bottom: 0 !important;
    flex-flow: column;
  }
  .banner .banner_left {
    width: 100% !important;
    gap: 10px !important;
  }
  .banner .banner_left .info {
    font-size: 16px !important;
  }
  .banner .banner_left .button {
    justify-content: center;
  }
  .banner .banner_right {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
  }
  .banner .banner_right .test {
    width: 100% !important;
  }
  .banner .banner_right .person {
    bottom: 0 !important;
    right: 70px !important;
    height: 200px !important;
  }
}
.banner .banner_left {
  width: 50%;
  display: flex;
  flex-flow: column;
  gap: 30px;
}
.banner .banner_left h1 {
  font-size: 40px;
  line-height: normal;
}
.banner .banner_left .info {
  font-size: 24px;
}
.banner .banner_left .button {
  display: flex;
  gap: 20px;
}
.banner .banner_left .button > div {
  cursor: pointer;
  background-color: #438c7b;
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  transition: all 0.2s;
}
.banner .banner_left .button > div:hover {
  border-color: #438c7b;
  background-color: #fff;
  color: #438c7b;
}
.banner .banner_right {
  flex: 1;
  height: 500px;
  position: relative;
  text-align: center;
}
.banner .banner_right .test {
  height: 100%;
}
.banner .banner_right .person {
  position: relative;
  bottom: 0;
  right: 100px;
  width: 160px;
}
.desc {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .desc .desc_item {
    padding: 40px 20px !important;
    gap: 20px !important;
  }
  .desc .desc_item > img {
    width: 50% !important;
  }
  .desc .desc_item > div h1 {
    font-size: 20px !important;
  }
  .desc .desc_item > div p {
    font-size: 14px !important;
    margin-top: 10px !important;
  }
}
.desc .desc_item {
  justify-content: center;
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 100px;
  border-bottom: 1px solid #9E9E9E59;
}
.desc .desc_item:nth-of-type(2n) {
  flex-flow: row-reverse;
}
.desc .desc_item > img {
  width: 20%;
}
.desc .desc_item > div h1 {
  font-size: 40px;
  line-height: normal;
}
.desc .desc_item > div p {
  font-size: 25px;
  margin-top: 20px;
}
.contact {
  background-color: #7fbeb3;
  color: white;
  padding: 20px 60px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 800px) {
  .contact {
    width: 100%;
    padding: 20px !important;
  }
  .contact h2 {
    margin-top: 0 !important;
  }
  .contact .contact-info p {
    font-size: 14px !important;
    word-wrap: break-word;
    margin-bottom: 0 !important;
  }
}
.contact h2 {
  font-size: 32px;
  text-align: center;
  margin: 20px 0;
}
.contact-info p {
  font-size: 25px;
  margin-bottom: 40px;
}
