
        .featured-rentals-container {
            position: relative;
            padding: 0 60px;
        }

        .featured-rentals-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .featured-rentals-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            text-decoration: none;
            color: inherit;
        }

        .featured-rentals-image {
            position: relative;
            height: 200px;
            background-size: cover;
            background-position: center;
            background-color: #e0e0e0;
        }

        .featured-rentals-image.lazy-load {
            background-image: none !important;
        }

        .featured-rentals-favorite {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .featured-rentals-favorite i {
            color: #333;
        }

        .featured-rentals-rating {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
        }

        .featured-rentals-rating i {
            color: #ffc107;
            margin-right: 3px;
        }

        .featured-rentals-content {
            padding: 15px;
        }

        .featured-rentals-price {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .featured-rentals-price-range {
            color: #666;
        }

        .featured-rentals-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .featured-rentals-location {
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
        }

        .featured-rentals-features {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 13px;
            color: #666;
        }

        .featured-rentals-feature-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .featured-rentals-control-prev,
        .featured-rentals-control-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .featured-rentals-control-prev:hover,
        .featured-rentals-control-next:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            transform: translateY(-50%) scale(1.05);
        }

        .featured-rentals-control-prev {
            left: -60px;
        }

        .featured-rentals-control-next {
            right: -60px;
        }

        .featured-rentals-control-icon {
            width: 20px;
            height: 20px;
            background-size: 100%;
            filter: invert(1);
        }

        .featured-rentals-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding-bottom: 20px;
        }

        .featured-rentals-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ccc;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background-color 0.3s ease;
        }

        .featured-rentals-indicator.active {
            background-color: #333;
        }

        /* Mobile styles */
        @media (max-width: 767px) {
            .featured-rentals-container {
                padding: 0 15px;
            }

            .featured-rentals-control-prev,
            .featured-rentals-control-next {
                display: none;
            }

            .carousel-inner {
                overflow: visible;
            }

            .carousel-item {
                display: none;
            }

            .carousel-item.active {
                display: block;
            }
        }

        /* Desktop styles */
        @media (min-width: 768px) {
            .featured-rentals-indicators {
                display: none;
            }

            .carousel-item .col-md-3 {
                flex: 0 0 25%;
                max-width: 25%;
            }
        }
   
.section-section {
     
  }
  .section-title {
    text-align: center;
    font-size: 28px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .section-divider {
    width: 100px;
    height: 3px;
    background: #dc3545;
    margin: 0 auto 30px;
    border-radius: 2px;
  } 	 
