/* === Help Center Page === */
.page-help {
  padding-top: var(--header-height);
}

.main-bg {
  padding-bottom: 110px;
  background: url('../../images/bg-icon.png');
  background-repeat: no-repeat;
  background-size: auto;
}

/* Help Hero */
.help-hero {
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-hero__title {
  font-weight: bold;
  font-size: 52px;
  color: #333333;
}

.help-subText{
  font-weight: 400;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin-bottom: 30px;
}

/* FAQ Section */
.help-faq__title {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq-column {
  background: #FFFFFF;
  box-shadow: 0px 1px 8px 0px rgba(166, 175, 183, 0.33);
  border-radius: 9px;
  padding: 24px 18px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.faq-column:hover {
  /* box-shadow: 0 4px 20px rgba(24, 144, 255, 0.2); */
  /* transform: translateY(-3px); */
}

.faq-topBox{
  display: flex;
  align-items: center;
  margin-bottom: 20px;

}

.faq-topBox img{
  width: 24px;
  margin-right: 7px;
}

.faq-title {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  transition: color 0.3s ease;
}

.faq-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EEEEEE;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq-item:hover {
  /* background-color: #F5F9FF; */
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 4px;
}

.faq-item:hover .faq-item-text {
  color: #1890FF;
}

.faq-item:hover .faq-item-right {
  transform: translateX(4px);
  color: #1890FF;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-dian {
  background-color: #1890FF;
  transform: scale(1.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-dian {
  width: 4px;
  height: 4px;
  background: #1890FF;
  border-radius: 50%;
}

.faq-item-text {
  font-size: 14px;
  color: #333333;
  margin-left: 10px;
}

.faq-item-right {
  margin-left: auto;
}

/* Demo Section */
.help-demo {
  padding: 68px 0;
}

.help-demo__title {
  font-weight: 400;
  font-size: 32px;
  color: #333333;
  margin-bottom: 32px;
  text-align: center;
}

.demo-cont {
  background: #FFFFFF;
  box-shadow: 0px 1px 8px 0px rgba(166, 175, 183, 0.33);
  border-radius: 9px;
  padding: 28px 0px;
  box-sizing: border-box;
}

.demo-grid {
  display: flex;
  justify-content: space-evenly;
}

.demo-card {
  width: 350px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.demo-card:hover {
  transform: translateY(-5px);
}

.demo-card:hover .demo-card__video {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.demo-card:hover .demo-card__play {
  background-color: rgba(24, 144, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
  transition: all 0.3s ease;
}

.demo-card:hover .demo-card__video img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.demo-card__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.demo-card__video {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
}

.demo-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.demo-card__title {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-top: 10px;
}

/* Contact Section */
.help-contact {
  height: 282px;
  background: #EEF6FF;
  box-sizing: border-box;
}

.help-chid-box{
  width: 1510px;
  height: 282px;
  margin: 0 auto;
  box-sizing: border-box;
  background-image: url('../../images/help/icon4.png');
  background-repeat: no-repeat;
  background-position: right 0px top 16px;
  background-size: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.help-contact__content {
  text-align: left;
}

.help-contact__title {
  font-size: 34px;
  color: #333333;
}

.help-contact__desc {
  font-size: 16px;
  color: #333333;
  margin-top: 12px;
  margin-bottom: 36px;
}

.help-contact__phone {
  font-size: 14px;
  color: #333333;
  margin-top: 16px;
}

#uptop:hover {
  background-color: #0687F1;
}