        .swiper1 {
            width: 90%;
            max-width: 1100px;
            padding: 20px;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
        }

        .news-card {
            width: 300px;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .news-card:hover {
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 200px;
        }

        .image-container img {
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffcc00;
            color: black;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 5px;
        }

        .content {
            padding: 15px;
            text-align: center;
        }

        .content h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .info {
            display: flex;
            justify-content: space-around;
            font-size: 12px;
            color: gray;
        }

        .swiper-pagination-bullet {
            height: 13px;
            width: 13px;
            opacity: 0.5;
            background: #5372F0;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #5372F0;
        }
