      .open-houses-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .property-listing {
            margin-bottom: 50px;
            border-bottom: 1px solid #eee;
            padding-bottom: 30px;
        }
        
        .property-header {
            margin-bottom: 20px;
        }
        
        .property-header h2 {
            color: #00557b;
            margin-bottom: 5px;
        }
        
        .property-meta {
            display: flex;
            gap: 20px;
            color: #666;
        }
        
        .property-meta i {
            margin-right: 5px;
            color: #88c540;
        }
        
        .carousel-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .carousel-slide {
            display: none;
            width: 100%;
        }
        
        .carousel-slide.active {
            display: block;
        }
        
        .carousel-slide img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,85,123,0.7);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 18px;
            z-index: 10;
        }
        
        .carousel-btn:hover {
            background: #00557b;
        }
        
        .prev {
            left: 20px;
        }
        
        .next {
            right: 20px;
        }
        
        .carousel-dots {
            text-align: center;
            padding: 10px 0;
        }
        
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background-color: #ddd;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .dot.active {
            background-color: #88c540;
        }
        
        .property-details {
            margin-top: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta {
            background: #88c540;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 15px;
            transition: background 0.3s;
        }
        
        .cta:hover {
            background: #76ad38;
        }