.advantages {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.advantages .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
  font-family: Chakra Petch, Noto Sans TC, Microsoft JhengHei, Arial, sans-serif !important;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.adv-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.adv-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.adv-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.adv-item .text h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.adv-item .text em {
  color: #102888;
  font-style: normal;
  margin-right: 5px;
  font-family: Chakra Petch, Noto Sans TC, Microsoft JhengHei, Arial, sans-serif !important;
  font-weight: 600;
}



.adv-item .text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  font-family: Chakra Petch, Noto Sans TC, Microsoft JhengHei, Arial, sans-serif !important;
}

/* 响应式部分 */
@media (max-width: 992px) {
  .advantage-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .advantage-list {
    grid-template-columns: 1fr;
  }
  .adv-item {
    padding: 25px 15px;
  }
  .adv-item img {
    width: 60px;
    height: 60px;
  }
}


.enquiry-section {
  background: linear-gradient(135deg, #112a88 0%, #0b72ed 100%);
  color: #fff;
  padding: 60px 20px;
  font-family: Chakra Petch, Noto Sans TC, Microsoft JhengHei, Arial, sans-serif !important;
}

.enquiry-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.enquiry-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.enquiry-left {
  flex: 1 1 60%;
}

.enquiry-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.enquiry-left h3 em {
  color: #ffe600;
  font-style: normal;
  margin-right: 5px;
}

.enquiry-left p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 0.95;
}

.enquiry-right {
  flex: 1 1 35%;
  text-align: right;
}

.enquiry-right .phone {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.consult-btn {
  display: inline-block;
  background: #fff;
  color: #122a88;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.consult-btn:hover {
  background: #ffe600;
  color: #000;
}

/* 响应式 */
@media (max-width: 992px) {
  .enquiry-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .enquiry-left, .enquiry-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .enquiry-right .phone {
    font-size: 1.8rem;
  }

  .consult-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}




/* ========== Global ========== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
    line-height: 1.7;
}

/* 标题统一样式 */
h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ========== 关于我们 ========== */
/* 关于我们（图片左，文字右） */
.sec-about {
  background: #085095;
  color: #fff;
  padding: 60px 20px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 左侧图片 */
.about-left {
  flex: 1;
  min-width: 280px;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  object-fit: cover;
}

/* 右侧文字 */
.about-right {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-en {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.about-title {
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-title .bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #fff;
}

/* 正文 */
.about-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f1f5f9;
}

/* 查看更多按钮 */
.about-more {
  display: inline-block;
  padding: 10px 20px;
  background: #ee551f;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background .18s, transform .12s;
}

.about-more:hover {
  background: #ff6c35;
  transform: translateY(-2px);
}

/* 响应式：窄屏改为上下排列（图片在上，文字在下） */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-right {
    text-align: center;
  }
  .about-title {
    justify-content: center;
  }
  .about-image {
    max-width: 100%;
  }
}


/* ========== 资质展示区域 ========== */
.qualification-section {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.title {
    font-size: 30px;
    font-weight: bold;
    
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.qual-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.qual-item:hover {
    transform: translateY(-4px);
}

.qual-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.qual-item p {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}


/* 资质图片点击放大 */
.zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.zoom-overlay img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    animation: zoomFade .25s ease;
}

@keyframes zoomFade {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

