body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}
.hero {
    background: #007bff; /* Solid blue background */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white; /* Default text color for hero section */
}
.hero h1 {
    color: white; /* White heading for contrast */
    font-size: 4.5rem;
    font-weight: 700;
}
.hero .lead {
    color: white; /* White slogan for contrast */
    font-size: 1.25rem;
}
.search-bar {
    max-width: 600px;
    margin: 20px auto;
}
.featured {
    padding: 40px 0;
}
#map {
    height: 500px;
    margin-top: 20px;
}
.filters {
    margin-bottom: 20px;
}
.navbar-dark .navbar-nav .nav-link {
    color: white; /* White nav links */
}
.navbar-dark .navbar-nav .nav-link.active {
    font-weight: bold; /* Highlight active page */
}