
    body {
        font-family: Arial, sans-serif;
        background-color: #f0f0f0;
    }
    .container {
        display: flex;
        gap: 20px;
        justify-content: center;
        padding: 20px;
    }
    .property-card {
        background-color: #67edfe;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 20px;
        width: 250px;
        transition: transform 0.3s ease;
    }
    .property-card:hover {
        transform: translateY(-5px);
    }
    .property-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    .property-price {
        font-size: 24px;
        font-weight: bold;
        color: #edff61;
        margin-bottom: 10px;
    }
    .property-details {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .property-detail {
        display: flex;
        align-items: center;
    }
    .property-detail img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }
    .property-address {
        font-style: italic;
        color: #666;
    }