/* Properties section styles */
.properties {
    padding: 4rem 2rem;
    background: #f5f5f5;
  }
  
  .properties-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .property-card:hover {
    transform: translateY(-5px);
  }
  
  .property-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .property-content {
    padding: 1.5rem;
  }
  
  .property-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
  }
  
  .property-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }