body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

.navbar-brand {
    letter-spacing: -1px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, .50), rgba(0, 0, 0, .50)),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.search-box {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
    margin-top: 30px;
}

.property-card {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
    transition: .3s ease;
}

.property-card:hover {
    transform: translateY(-8px);
}

.property-card img {
    height: 260px;
    object-fit: cover;
}

.section-title {
    font-weight: 800;
    margin-bottom: 40px;
}