 /* Hero Slider */
    .hero-slider {
      margin: 30px 0;
      height: 400px;
      overflow: hidden;
      border-radius: 8px;
    }
    .hero-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Section Layout */
    .section {
      display: flex;
      gap: 30px;
      margin: 50px 0;
      align-items: center;
    }
    .section img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .section-text,
    .section-image {
      flex: 1;
    }

    .section-text h1 {
      font-size: 32px;
      color: #2c3e50;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .section-text p {
      font-size: 16px;
      line-height: 1.8;
      color: #555;
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
      }
      .hero-slider {
        height: 250px;
      }
      .section-text h1 {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .section-text h1 {
        font-size: 24px;
      }
      .section-text p {
        font-size: 14px;
      }
    }