.page14-section {
  margin-top: 120px;
  background-color: #FFFFFF;
  padding: 87px 0 50px;
}

.page14-section .container .page14-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.page14-section .container .page14-header .page14-title {
  width: 630px;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.page14-section .container .page14-header .page14-desc {
  width: 500px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.page14-section .container .page14-video-wrap {
  width: 100%;
}

.page14-section .container .page14-video-wrap .page14-video {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.page14-section .container .page14-video-wrap .page14-video img,
.page14-section .container .page14-video-wrap .page14-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page14-section .container .page14-video-wrap .page14-video .page14-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.page14-section .container .page14-video-wrap .page14-video .page14-play:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.page14-section .container .page14-video-wrap .page14-video .page14-play svg {
  width: 36px;
  height: 36px;
  color: #FFFFFF;
  margin-left: 4px;
}

@media (max-width: 1024px) {
  .page14-section .container .page14-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page14-section .container .page14-header .page14-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page14-section {
    padding: 60px 0 80px;
  }
  .page14-section .container {
    padding: 0 20px;
  }
  .page14-section .container .page14-header {
    margin-bottom: 40px;
    gap: 32px;
  }
  .page14-section .container .page14-header .page14-title {
    font-size: 26px;
  }
  .page14-section .container .page14-video-wrap .page14-video .page14-play {
    width: 60px;
    height: 60px;
  }
  .page14-section .container .page14-video-wrap .page14-video .page14-play svg {
    width: 28px;
    height: 28px;
  }
}

.page15-section {
  background-color: #FFFFFF;
  padding: 100px 0 120px;
}

.page15-section .container .page15-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.page15-section .container .page15-subtitle {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 48px;
}

.page15-section .container .page15-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 78px;
}

.page15-section .container .page15-cards .page15-card {
  display: flex;
  flex-direction: column;
}

.page15-section .container .page15-cards .page15-card .page15-card-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.page15-section .container .page15-cards .page15-card .page15-card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 480 / 300;
}

.page15-section .container .page15-cards .page15-card .page15-card-body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-items: baseline;
  gap: 0 16px;
  position: relative;
}

.page15-section .container .page15-cards .page15-card .page15-card-body .page15-card-num {
  position: absolute;
  top: -5px;
  left: 18px;
  color: #2BA275;
  font-family: "Racing Sans One";
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 42.857% */
}

.page15-section .container .page15-cards .page15-card .page15-card-body .page15-card-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 42px 0 0 135px;
}

.page15-section .container .page15-cards .page15-card .page15-card-body .page15-card-title {
  color: #111;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.page15-section .container .page15-cards .page15-card .page15-card-body .page15-card-desc {
  width: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .page15-section .container .page15-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .page15-section .container .page15-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page15-section {
    padding: 60px 0 80px;
  }
  .page15-section .container {
    padding: 0 20px;
  }
  .page15-section .container .page15-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page15-section .container .page15-cards .page15-card .page15-card-body .page15-card-num {
    font-size: 36px;
  }
  .page15-section .container .page15-cards .page15-card .page15-card-body .page15-card-title {
    font-size: 18px;
  }
  .page15-section .container .page15-title {
    font-size: 28px;
  }
}

.page16-section {
  padding: 100px 0 120px;
}

.page16-section .container .page16-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.page16-section .container .page16-subtitle {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 60px;
}

.page16-section .container .page16-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.page16-section .container .page16-cards .page16-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page16-section .container .page16-cards .page16-card:hover .page16-card-icon svg {
  fill: #2BA275;
}

.page16-section .container .page16-cards .page16-card .page16-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page16-section .container .page16-cards .page16-card .page16-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page16-section .container .page16-cards .page16-card .page16-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.page16-section .container .page16-cards .page16-card .page16-card-icon {
  position: absolute;
  top: 47px;
  left: 63px;
  width: 60px;
  height: 60px;
  color: #FFFFFF;
}

.page16-section .container .page16-cards .page16-card .page16-card-icon svg {
  fill: #fff;
  width: 100%;
  height: 100%;
}

.page16-section .container .page16-cards .page16-card .page16-card-body {
  position: absolute;
  top: 432px;
  left: 0;
  padding: 0px 47px 84px 63px;
}

.page16-section .container .page16-cards .page16-card .page16-card-body h3 {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page16-section .container .page16-cards .page16-card .page16-card-body p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

@media (max-width: 1024px) {
  .page16-section .container .page16-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .page16-section .container .page16-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page16-section {
    padding: 60px 0 80px;
  }
  .page16-section .container {
    padding: 0 20px;
  }
  .page16-section .container .page16-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page16-section .container .page16-cards .page16-card {
    min-height: 280px;
  }
  .page16-section .container .page16-title {
    font-size: 28px;
  }
}

.page17-section {
  background-color: #F8F8F8;
  padding: 100px 0 100px;
}

.page17-section .container {
  max-width: 1640px;
}

.page17-section .container .page17-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.page17-section .container .page17-header .page17-header-left .page17-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.page17-section .container .page17-header .page17-header-left .page17-subtitle {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.page17-section .container .page17-header .page17-nav {
  display: flex;
  gap: 20px;
}

.page17-section .container .page17-header .page17-nav .page6-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: none;
  cursor: pointer;
}

.page17-section .container .page17-header .page17-nav .page6-arrow img {
  width: 100%;
  height: 100%;
}

.page17-section .container .page17-carousel-wrap {
  overflow: hidden;
  padding: 20px;
}

.page17-section .container .page17-carousel-wrap .page17-carousel {
  display: flex;
  gap: 13px;
  transition: transform 0.3s ease;
}

.page17-section .container .page17-carousel-wrap .page17-carousel .page17-card {
  flex: 0 0 390px;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
}

.page17-section .container .page17-carousel-wrap .page17-carousel .page17-card:hover {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
}

.page17-section .container .page17-carousel-wrap .page17-carousel .page17-card .page17-card-image {
  width: 100%;
  aspect-ratio: 340 / 470;
  overflow: hidden;
}

.page17-section .container .page17-carousel-wrap .page17-carousel .page17-card .page17-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page17-section .container .page17-carousel-wrap .page17-carousel .page17-card .page17-card-caption {
  margin-top: 24px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1024px) {
  .page17-section .container .page17-header {
    flex-direction: column;
    gap: 24px;
  }
  .page17-section .container .page17-header .page17-header-left .page17-title {
    font-size: 32px;
  }
  .page17-section .container .page17-carousel-wrap .page17-carousel .page17-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .page17-section {
    padding: 60px 0 80px;
  }
  .page17-section .container {
    padding: 0 20px;
  }
  .page17-section .container .page17-header .page17-header-left .page17-title {
    font-size: 28px;
  }
  .page17-section .container .page17-carousel-wrap .page17-carousel .page17-card {
    flex: 0 0 260px;
  }
}

.page18-section {
  width: 100%;
  max-width: 1920px;
  height: 503px;
  background-color: #F8F8F8;
  background-image: url("../img/seo/seo_item33.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page18-section .container {
  padding-top: 167px;
}

.page18-section .container .page18-text {
  padding-left: 106px;
  width: 1160px;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .page18-section .container {
    flex-direction: column;
    min-height: auto;
  }
  .page18-section .container .page18-left {
    padding: 48px 40px;
  }
  .page18-section .container .page18-left .page18-quote {
    font-size: 80px;
  }
  .page18-section .container .page18-right {
    clip-path: none;
  }
}

@media (max-width: 768px) {
  .page18-section {
    padding: 60px 0;
  }
  .page18-section .container {
    padding: 0 20px;
  }
  .page18-section .container .page18-left {
    padding: 40px 24px;
  }
  .page18-section .container .page18-left .page18-quote {
    font-size: 64px;
  }
  .page18-section .container .page18-left .page18-text {
    font-size: 18px;
  }
}

.page19-section {
  background-color: #FFFFFF;
  padding: 140px 0;
}

.page19-section .container {
  display: flex;
  gap: 158px;
}

.page19-section .container .page19-left {
  flex: 0 0 322px;
  padding-top: 0px;
}

.page19-section .container .page19-left .page19-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page19-section .container .page19-left .page19-subtitle {
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 77px;
}

.page19-section .container .page19-left .page19-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  border-radius: 25px;
  background: #111;
  backdrop-filter: blur(5px);
  color: #FFFFFF;
  border: none;
  font-size: 16px;
  line-height: 1.875;
  cursor: pointer;
}

.page19-section .container .page19-right {
  flex: 1;
  min-width: 0;
}

.page19-section .container .page19-right .page19-card {
  display: flex;
  align-items: flex-start;
  gap: 94px;
  padding: 30px 0;
  border-bottom: 1px solid #D9D9D9;
}

.page19-section .container .page19-right .page19-card:first-child {
  border-top: 1px solid #D9D9D9;
}

.page19-section .container .page19-right .page19-card:last-child {
  margin-bottom: 0;
}

.page19-section .container .page19-right .page19-card .page19-card-text {
  flex: 1;
  min-width: 746px;
}

.page19-section .container .page19-right .page19-card .page19-card-text .page19-card-title {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.63;
  margin-bottom: 12px;
}

.page19-section .container .page19-right .page19-card .page19-card-text .page19-card-desc {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.page19-section .container .page19-right .page19-card .page19-card-image {
  flex-shrink: 0;
}

.page19-section .container .page19-right .page19-card .page19-card-image img {
  width: 280px;
  height: 175px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

@media (max-width: 1024px) {
  .page19-section .container {
    flex-direction: column;
    gap: 40px;
  }
  .page19-section .container .page19-left {
    flex: none;
    max-width: 100%;
  }
  .page19-section .container .page19-left .page19-title {
    font-size: 36px;
  }
  .page19-section .container .page19-left .page19-subtitle {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page19-section {
    padding: 60px 0 80px;
  }
  .page19-section .container {
    padding: 0 20px;
    gap: 32px;
  }
  .page19-section .container .page19-left .page19-title {
    font-size: 28px;
  }
  .page19-section .container .page19-left .page19-subtitle {
    font-size: 28px;
  }
  .page19-section .container .page19-right .page19-card {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  .page19-section .container .page19-right .page19-card .page19-card-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
  }
}

.faq-section {
  padding: 130px 0;
  background-color: #FAFAFB;
}

.faq-section .faq-layout {
  display: grid;
  grid-template-columns: 370px 1120px;
  gap: 110px;
  align-items: start;
}

.faq-section .main-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.faq-section .sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #656565;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.faq-section .category-label {
  font-size: 18px;
  color: #656565;
  margin: 0 0 77px 0;
}

.faq-section .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.3s ease;
}

.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-section .faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-section .faq-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.faq-section .faq-question {
  display: flex;
  align-items: center;
  padding: 40px 0 27px;
  font-size: 22px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-section .faq-question::-webkit-details-marker {
  display: none;
}

.faq-section .q-prefix {
  flex-shrink: 0;
  margin-right: 8px;
  color: #111;
}

.faq-section .q-text {
  flex-grow: 1;
}

.faq-section .faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-section .faq-icon::before {
  content: "";
  width: 24px;
  height: 4px;
  background: #A3ACB1;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-section .faq-icon::after {
  transition: all 0.3s ease;
  content: "";
  width: 24px;
  height: 4px;
  background: #A3ACB1;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-section .faq-item[open] .faq-icon::after {
  background: #111;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-section .faq-item[open] .faq-question {
  text-decoration: underline;
}

.faq-section .faq-answer {
  padding: 0 0 40px 0;
}

.faq-section .faq-answer p {
  font-size: 16px;
  color: #656565;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .faq-layout {
    gap: 60px;
  }
  .faq-section .main-title {
    font-size: 28px;
  }
  .faq-section .sub-title {
    font-size: 18px;
  }
  .faq-section .faq-question {
    padding: 18px 0;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    padding: 0 16px;
  }
  .faq-section .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section .main-title {
    font-size: 24px;
  }
  .faq-section .sub-title {
    font-size: 17px;
  }
  .faq-section .category-label {
    margin-bottom: 20px;
  }
  .faq-section .faq-question {
    padding: 16px 0;
    font-size: 15px;
  }
  .faq-section .faq-answer p {
    font-size: 13px;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .faq-section .main-title {
    font-size: 20px;
  }
  .faq-section .sub-title {
    font-size: 16px;
  }
}
