* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
            padding: 40px 20px;
        } */
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .header h1 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .header p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
        }
        
        .listing-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .listing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .card-image {
            height: 180px;
            position: relative;
            overflow: hidden;
        }
        
        .image-slider {
            width: 100%;
            height: 100%;
            display: flex;
            overflow: hidden;
        }
        
        .image-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .image-slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1611472173362-3f53dbd65d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80');
        }
        
        .image-slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1592750475338-74b7b21085ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80');
        }
        
        .slider-controls {
            position: absolute;
            bottom: 12px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 6px;
            z-index: 3;
        }
        
        .slider-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        .image-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: background 0.3s;
        }
        
        .image-badge:hover {
            background: #3498db;
        }
        
        .card-content {
            padding: 18px;
        }
        
        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            color: #27ae60;
            font-size: 16px;
            font-weight: 700;
        }
        
        .card-models {
            color: #7f8c8d;
            font-size: 13px;
            margin-bottom: 15px;
            line-height: 1.4;
            height: 36px;
            overflow: hidden;
        }
        
        .card-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .detail {
            display: flex;
            flex-direction: column;
        }
        
        .detail-value {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 4px;
        }
        
        .detail-label {
            font-size: 11px;
            color: #7f8c8d;
        }
        
        .price-term {
            padding: 4px 8px;
            background: #ffeaa7;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #d35400;
            text-transform: capitalize !important;
        }
        
        .card-button {
            display: block;
            width: 100%;
            padding: 10px;
            background: #3498db;
            color: white;
            text-align: center;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .card-button:hover {
            background-color: #2980b9;
            
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid #eee;
        }
        
        .footer-item {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 11px;
        }
        
        .footer-item i {
            margin-right: 4px;
            color: #3498db;
        }
        
        .city-badge {
            display: inline-flex;
            align-items: center;
            background: #f8f9fa;
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: #2c3e50;
            text-transform: capitalize;
        }
        
        .city-badge i {
            color: #e74c3c;
            margin-right: 4px;
            font-size: 10px;
        }
        
        /* Responsive styles */
        @media (max-width: 1200px) {
            .cards-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .cards-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .header h1 {
                font-size: 28px;
            }
            
            .header p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .card-image {
                height: 160px;
            }
            
            .card-content {
                padding: 15px;
            }
            
            .card-title {
                font-size: 16px;
            }
            
            .price {
                font-size: 15px;
            }
            
            .card-models {
                font-size: 12px;
            }
        }
        
        @media (max-width: 400px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
        }