.highlight-service {
  background: #f9c400;
  padding: 60px 20px;
  color: #111;
  font-family: 'Helvetica Neue', sans-serif;
}

.highlight-service__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
}

.highlight-service__img {
  width: 100%;
  aspect-ratio: 15 / 10;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.highlight-service__title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.bold-text {
  color: #111;
  font-weight: 900;
  background: #000;
  color: #f9c400;
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
}

.highlight-service__desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #222;
}

.highlight-service__actions {
  gap: 16px;
  text-align: center;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #111;
  color: #f9c400;
}

.btn-primary:hover {
  background: #333;
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 2px solid #111;
}

.btn-secondary:hover {
  background: #eee;
}


@media (max-width: 1024px) {
  .highlight-service__container {
    grid-template-columns: 1fr; /* 垂直堆叠 */
    gap: 40px;
    padding: 0 12px;
    text-align: center;
  }

  .highlight-service__left,
  .highlight-service__right {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .highlight-service__img {
    width: 45%;
    margin-bottom: 12px;
  }

  .highlight-service__title {
    font-size: 2rem;
  }

  .highlight-service__desc {
    font-size: 1rem;
  }

  .highlight-service__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .highlight-service__img {
    width: 100%;
  }

  .highlight-service__title {
    font-size: 1.6rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
  }

  .highlight-service__actions {
    flex-direction: column;
    gap: 12px;
  }
}
