.elementor-14 .elementor-element.elementor-element-2b09b26{--display:flex;}.elementor-14 .elementor-element.elementor-element-2b09b26:not(.elementor-motion-effects-element-type-background), .elementor-14 .elementor-element.elementor-element-2b09b26 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#002966;}.elementor-14 .elementor-element.elementor-element-7964aaa > .elementor-widget-container{margin:50px 0px 0px 0px;}.elementor-14 .elementor-element.elementor-element-7964aaa{text-align:center;}.elementor-14 .elementor-element.elementor-element-7964aaa .elementor-heading-title{color:var( --e-global-color-astglobalcolor5 );}.elementor-14 .elementor-element.elementor-element-151fa00 > .elementor-widget-container{margin:0px 0px 50px 0px;}.elementor-14 .elementor-element.elementor-element-151fa00{text-align:center;color:var( --e-global-color-astglobalcolor5 );}.elementor-14 .elementor-element.elementor-element-8b84c11{--display:flex;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-14 .elementor-element.elementor-element-3084049{text-align:center;}.elementor-14 .elementor-element.elementor-element-bd20db4{text-align:center;}.elementor-14 .elementor-element.elementor-element-f36af43{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14 .elementor-element.elementor-element-a094292{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14 .elementor-element.elementor-element-a094292:not(.elementor-motion-effects-element-type-background), .elementor-14 .elementor-element.elementor-element-a094292 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9FAFB;}.elementor-14 .elementor-element.elementor-element-5d7de74{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14 .elementor-element.elementor-element-4a37bfd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14 .elementor-element.elementor-element-4a37bfd:not(.elementor-motion-effects-element-type-background), .elementor-14 .elementor-element.elementor-element-4a37bfd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#2DB4F3;}/* Start custom CSS for html, class: .elementor-element-ccee2f5 */.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 固定两列 */
  gap: 24px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr; /* 手机端一列 */
  }
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  font-size: 36px;
  color: #00AEEF;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.feature-card ul li {
  margin: 6px 0;
  font-size: 14px;
  color: #0077cc;
  position: relative;
  padding-left: 20px;
}

.feature-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00AEEF;
  font-weight: bold;
}

.feature-card a {
  color: #00AEEF;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.feature-card a:hover {
  text-decoration: underline;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0c54f32 */.service-section {
  background-color: #f9fafb;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.service-section h2 {
  font-size: 28px;
  color: #1e2a3b;
  margin-bottom: 10px;
}

.service-section .subheading {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.service-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 18px;
  color: #1e2a3b;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

/* 响应式：移动端显示为一列 */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1562dd3 */.process-section {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.process-section h2 {
  font-size: 28px;
  color: #1e2a3b;
  margin-bottom: 10px;
}

.process-section .subheading {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.process-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.step-number {
  background-color: #00AEEF;
  color: white;
  font-weight: bold;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  margin: 0 auto 12px;
}

.icon {
  font-size: 30px;
  color: #00AEEF;
  margin-bottom: 12px;
}

.process-card h3 {
  font-size: 18px;
  color: #1e2a3b;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

/* 响应式：平板2列，手机1列 */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b6dac23 */.cta-section {
  background-color: #2db4f3; /* 亮蓝色背景 */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: bold;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #2db4f3;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e6f6fc;
}
.cta-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #ffffff !important; /* 强制白色标题 */
}/* End custom CSS */