  .content-container {
            width: 100%;
            background: white;
            padding: 30px;
            margin: 0 auto;
            display: flex;
        }
.heading-continer {
  width: 20%
}

        .heading {
            color: #444;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .column-text {
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
            color: #444;
        }

        .swiper {
            width: 80%;
            height: auto;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            aspect-ratio: 16/9;
            cursor: pointer;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: transform 0.3s ease;
        }

        .swiper-slide input[type="radio"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            z-index: 10;
        }

        .swiper-slide:hover img {
            transform: scale(1.03);
        }

        .checkmark {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            background: #4CAF50;
            color: white;
            border-radius: 50%;
            display: none;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            z-index: 3;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .swiper-slide input[type="radio"]:checked ~ .checkmark {
            display: flex;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #9768B6;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        @media (max-width: 768px) {
            .content-container {
                width: 95%;
                padding: 20px;
            }
        }
