
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f5f5f5;
  color: #333;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f4c81;
  color: white;
  padding: 1rem 2rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  height: 40px;
  width: 40px;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  background: #e9f0f7;
  padding: 2rem;
  text-align: center;
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero input {
  padding: 0.75rem;
  width: 80%;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem 2rem;
}
.property {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.property img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.property-info {
  padding: 0.5rem 1rem 1rem 1rem;
}
footer {
  background: #0f4c81;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
