
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f7fb;
  color: #1a1a1a;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0c1f4a;
  padding: 15px 40px;
  color: white;
}
header .logo {
  font-size: 20px;
  font-weight: bold;
}
header nav a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}
header .buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
}
.login {
  background: white;
  color: #0c1f4a;
}
.register {
  background: #f23557;
  color: white;
}
.hero {
  position: relative;
}
.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.property-card {
  position: absolute;
  right: 50px;
  top: 50px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.property-card h3 {
  margin: 10px 0 0;
}
.property-card .price {
  font-size: 24px;
  color: #f23557;
}
.property-card .icons {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 10px;
}
.search-bar {
  background: #0c1f4a;
  color: white;
  padding: 20px 40px;
}
.search-tabs button {
  margin-right: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
}
.search-tabs .active {
  background: #f23557;
  color: white;
}
.filters {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.filters select, .filters input {
  padding: 10px;
  border-radius: 4px;
  border: none;
}
.search-btn {
  background: #f23557;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}
.info-section {
  padding: 40px;
  text-align: center;
}
