/* SVG图标样式修复 */
svg {
  stroke: currentColor;
  fill: none;
}

svg[class*="icon"] {
  display: inline-block;
  vertical-align: middle;
}

.hero-feature-icon svg,
.client-type-icon svg,
.feature-icon svg,
.advantage-item svg,
.footer-contact-item svg,
.social-link svg {
  stroke: var(--apple-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 确保SVG图标正确显示 */
svg circle,
svg line,
svg path,
svg rect,
svg polyline,
svg polygon {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 修复一些SVG可能没有正确闭合的问题 */
svg path[fill="currentColor"],
svg path[stroke="currentColor"] {
  fill: none;
}
