  :root {
            --primary-color: #4CAF50;
            --secondary-color: #2E7D32;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            padding-top: 80px;
            color: #333;
        }
        
        .property-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .property-header {
            padding: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .property-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .property-location {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .property-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .property-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #f8f9fa;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        .meta-item i {
            color: var(--primary-color);
        }
        
        .image-gallery {
            position: relative;
            margin-bottom: 20px;
        }
        
        .main-image {
            width: 100%;
            height: 500px;
            object-fit: contain;
            border-radius: 8px;
            background-color: #f8f9fa;
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover, .thumbnail.active {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        
        .property-section {
            padding: 25px 30px;
            border-bottom: 1px solid #eee;
        }
        
        .property-section:last-child {
            border-bottom: none;
        }
        
        .section-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .feature-item i {
            color: var(--primary-color);
            font-size: 1.2rem;
            width: 30px;
        }
        
        .interaction-section {
            padding: 20px 30px;
            background-color: #f8f9fa;
            border-top: 1px solid #eee;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        
        .interaction-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 50px;
            background-color: white;
            border: 1px solid #ddd;
            color: #555;
            transition: all 0.3s;
            text-decoration: none;
            cursor: pointer;
        }
        
        .interaction-btn:hover {
            background-color: #f1f1f1;
        }
        
        .interaction-btn.liked {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border-color: rgba(220, 53, 69, 0.2);
        }
        
        .interaction-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
        
        .interaction-btn i {
            font-size: 1.1rem;
        }
        
        .contact-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .contact-btn:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .comment-section {
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .comment-form {
            margin-bottom: 30px;
        }
        
        .comment-item {
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        
        .comment-item:last-child {
            border-bottom: none;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .comment-author {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .comment-date {
            color: #6c757d;
            font-size: 0.85rem;
        }
        
        .sidebar-widget {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .property-card {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
        }
        
        .property-card:hover {
            background-color: #f8f9fa;
        }
        
        .property-card:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .property-thumb {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .property-info h5 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .property-price-small {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .property-location-small {
            color: #6c757d;
            font-size: 0.85rem;
        }
        
        .list-group-item {
            transition: all 0.3s;
        }
        
        .list-group-item:hover {
            background-color: #f8f9fa;
        }
        
        @media (max-width: 768px) {
            .property-title {
                font-size: 1.6rem;
            }
            
            .property-price {
                font-size: 1.5rem;
            }
            
            .main-image {
                height: 300px;
            }
            
            .property-section {
                padding: 20px;
            }
            
            .interaction-section {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .property-meta {
                flex-direction: column;
                gap: 10px;
            }
        }