/* Properties for Rent Section */
.properties-for-rent {
    padding: 2rem;
    background: #f8f9fa;
}

.properties-for-rent h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #0073e6;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.property-item {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.property-item:hover {
    transform: translateY(-5px);
}

.property-item img {
    width: 100%;
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.property-item h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
    color: #0073e6;
}

.property-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.property-item .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #34a853;
}