/* 优势卡片图标和标题居中显示 */
.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantage-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  text-align: center;
  margin-bottom: 1rem;
  width: 100%;
}

/* 挑战卡片图标和标题居中显示 */
.challenge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.challenge-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.challenge-card h3 {
  text-align: center;
  margin-bottom: 1rem;
  width: 100%;
}

/* 声明卡片图标和标题居中显示 */
.statement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.statement-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.statement-card h3 {
  text-align: center;
  margin-bottom: 1rem;
  width: 100%;
}

/* 保持段落文本左对齐，提高可读性 */
.advantage-card p,
.challenge-card p,
.statement-card p {
  text-align: left;
  width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .advantage-card,
  .challenge-card,
  .statement-card {
    padding: 1.5rem 1rem;
  }
}
