        .placement-section-dnt6 {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
            position: relative;
        }
        
        .placement-section-dnt6::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #f8b500, #004d40);
        }
        
        .container-dnt6 {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .placement-title-dnt6 {
            text-align: center;
            font-size: 42px;
            margin-bottom: 15px;
            color: #004d40;
            font-weight: 700;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .placement-title-dnt6::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #f8b500;
            margin: 10px auto 0;
            border-radius: 2px;
        }
        
        .placement-subtitle-dnt6 {
            text-align: center;
            font-size: 18px;
            margin-bottom: 40px;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .mySwiper-dnt6 {
            width: 100%;
            padding: 30px 10px;
        }
        
        /* Custom styling for Swiper slides */
        .mySwiper-dnt6 .swiper-slide {
            transition: all 0.3s ease;
            transform: scale(0.85);
            opacity: 0.7;
        }
        
        .mySwiper-dnt6 .swiper-slide-active {
            transform: scale(1);
            opacity: 1;
        }
        
        .placement-card-dnt6 {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .placement-card-dnt6:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .placement-card-dnt6 img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-bottom: 3px solid #f8b500;
        }
        
        /* Navigation buttons */
        .mySwiper-dnt6 .swiper-button-next,
        .mySwiper-dnt6 .swiper-button-prev {
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            color: #004d40;
            transition: all 0.3s ease;
        }
        
        .mySwiper-dnt6 .swiper-button-next:hover,
        .mySwiper-dnt6 .swiper-button-prev:hover {
            background-color: #004d40;
            color: white;
        }
        
        .mySwiper-dnt6 .swiper-button-next:after,
        .mySwiper-dnt6 .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }
        
        /* Pagination */
        .mySwiper-dnt6 .swiper-pagination {
            position: relative;
            margin-top: 20px;
        }
        
        .mySwiper-dnt6 .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #ccc;
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        
        .mySwiper-dnt6 .swiper-pagination-bullet-active {
            opacity: 1;
            background: #f8b500;
            width: 30px;
            border-radius: 6px;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .placement-title-dnt6 {
                font-size: 36px;
            }
            
            .placement-subtitle-dnt6 {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .placement-section-dnt6 {
                padding: 50px 15px;
            }
            
            .placement-title-dnt6 {
                font-size: 32px;
            }
            
            .mySwiper-dnt6 .swiper-button-next,
            .mySwiper-dnt6 .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
            
            .mySwiper-dnt6 .swiper-button-next:after,
            .mySwiper-dnt6 .swiper-button-prev:after {
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .placement-section-dnt6 {
                padding: 40px 10px;
            }
            
            .placement-title-dnt6 {
                font-size: 28px;
            }
            
            .placement-subtitle-dnt6 {
                font-size: 14px;
                margin-bottom: 30px;
            }
            
            .mySwiper-dnt6 .swiper-button-next,
            .mySwiper-dnt6 .swiper-button-prev {
                width: 35px;
                height: 35px;
                display: none;
            }
            
            .mySwiper-dnt6 .swiper-button-next:after,
            .mySwiper-dnt6 .swiper-button-prev:after {
                font-size: 14px;
            }
            
            .mySwiper-dnt6 .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
            }
            
            .mySwiper-dnt6 .swiper-pagination-bullet-active {
                width: 25px;
            }
        }
