.property-listings {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.property-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.property-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
}

.property-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
