
.re-header {
    background-color: #7b1e1e;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .real-estate-container {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }
  
  .property-list {
    flex: 1 1 350px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .property-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .property-card img {
    width: 100%;
    height: auto;
  }
  
  .property-info {
    padding: 0.75rem;
  }
  
  .property-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #333;
  }
  
  .property-info p {
    font-size: 0.9rem;
    color: #666;
  }
  
  .map-section {
    flex: 2 1 600px;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  @media (max-width: 1024px) {
    .real-estate-container {
      flex-direction: column;
    }
  
    .map-section {
      height: 400px;
    }
  }