.data-section {
  padding: 0 32px 80px;
  max-width: 1264px;
  margin: 0 auto;
}

.data-column-reverse {
  flex-direction: row-reverse;
}

.data-head {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.data-head .h3 {
  padding-top: 80px;
}
.data-head .text {
  max-width: 570px;
}

.data-body {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin: 46px auto 70px;
}

.data-col {
  width: 100%;
  max-width: 560px;
}

.data-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.data-swiper {
  padding-bottom: 40px;
}

.data-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.swiper-navs {
  width: 104px;
  height: 48px;
  position: relative;
}

.swiper-button-prev {
  left: unset;
  top: 0;
  margin-top: unset;
}

.swiper-button-next {
  right: 0;
  top: 0;
  margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}

.swiper-nav {
  width: 48px;
  height: 48px;
  border: 1px solid #D1D5DB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-nav svg {
  height: 10px;
  width: 6px;
}

.swiper-button-prev svg {
  transform: rotate(180deg);
}

.data-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-slide {
  display: flex;
  gap: 16px;
}

.data-desc {
  font-family: Medium;
  font-size: 32px;
  line-height: 1.5;
}

.data-btn {
  margin-top: 24px;
}

.faq-question {
  padding: 12px 0;
  font-size: 20px;
  cursor: pointer;
  color: #6B7280;
  line-height: 1.5;
  font-size: 18px;
  font-family: Regular;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  padding: 0;
  opacity: 0;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item.active .faq-question {
  font-family: Medium;
  color: #030712;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 0 12px;
}

@media (max-width: 768px) {
  .data-section {
    padding: 0 16px 32px;
    margin: 0;
  }
  .data-head {
    gap: 16px;
  }
  .data-head .h {
    padding-top: 32px;
  }
  .data-body {
    flex-direction: column;
    margin: 24px auto 48px;
    gap: 16px;
  }
  .data-img img {
    border-radius: 10px;
  }
  .data-slide {
    flex-direction: column;
  }
  .data-desc {
    font-size: 22px;
  }
  .swiper-navs {
    width: 72px;
    min-width: 72px;
    height: 32px;
  }
  .swiper-nav {
    width: 32px;
    height: 32px;
  }
  .data-swiper {
    padding-bottom: 0;
  }
}