
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f7f7f7;
            margin: 0;
            padding: 0;
        }
        .containe {
            max-width: 1200px;
            margin: 20px ;
            padding: 20px;
            
        }
        .header {
            text-align: center;
            margin-bottom: 20px;
            
        }
        .header h1 {
            font-size: 36px;
            color: #e67e22;
        }
        .property-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .property-item {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .property-item:hover {
            transform: translateY(-10px);
        }
        .property-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .property-info {
            padding: 20px;
        }
        .property-info h3 {
            font-size: 24px;
            margin: 0 0 10px 0;
            color: #333;
        }
        .property-info p {
            font-size: 16px;
            color: #666;
            margin: 0 0 10px 0;
        }
        .property-info .price {
            font-size: 20px;
            color: #e67e22;
            font-weight: bold;
        }
        .property-info .zone {
            font-size: 14px;
            color: #3498db;
        }
        .form-group {
            margin-bottom: 20px;
        }
        select {
            width: 100%;
            padding: 10px;
            border-radius: 4px;
            border: 1px solid #ddd;
            font-size: 16px;
        }
    
