.home-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

    .home-banner .swiper {
        width: 100%;
        height: 100%;
        max-width: 1920px;
        margin: 0 auto;
    }

    .home-banner .swiper-slide {
        max-width: 1920px;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* .home-banner .swiper-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 1;
} */

    .home-banner .swiper-slide-content h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 16px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .home-banner .swiper-slide-content p {
        font-size: 20px;
        margin-bottom: 32px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }

    .home-banner .swiper-slide-content .btn {
        display: inline-block;
        padding: 12px 32px;
        background-color: #ff6b00;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

        .home-banner .swiper-slide-content .btn:hover {
            background-color: #e55d00;
        }

    .home-banner .swiper-button-next,
    .home-banner .swiper-button-prev {
        color: #ffffff;
        width: 48px;
        height: 48px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
    }

        .home-banner .swiper-button-next::after,
        .home-banner .swiper-button-prev::after {
            font-size: 20px;
        }

        .home-banner .swiper-button-next:hover,
        .home-banner .swiper-button-prev:hover {
            background-color: rgba(0, 0, 0, 0.5);
        }

    .home-banner .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #ffffff;
        opacity: 0.5;
    }

    .home-banner .swiper-pagination-bullet-active {
        opacity: 1;
        background-color: #ff6b00;
    }

@media (max-width: 768px) {
    .home-banner {
        height: 400px;
    }

        .home-banner .swiper-slide-content h2 {
            font-size: 32px;
        }

        .home-banner .swiper-slide-content p {
            font-size: 16px;
        }

        .home-banner .swiper-button-next,
        .home-banner .swiper-button-prev {
            width: 36px;
            height: 36px;
        }

            .home-banner .swiper-button-next::after,
            .home-banner .swiper-button-prev::after {
                font-size: 16px;
            }
}

@media (max-width: 576px) {
    .home-banner {
        height: 300px;
    }

        .home-banner .swiper-slide-content h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .home-banner .swiper-slide-content p {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .home-banner .swiper-slide-content .btn {
            padding: 8px 24px;
            font-size: 14px;
        }
}
