/* Modern Navbar Styling */
.navbar {
    background: #fff;
    padding: 18px 32px;
    box-shadow: 0 4px 24px rgba(25,118,210,0.10);
    border-radius: 0 0 1.2em 1.2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976D2;
    text-decoration: none;
    gap: 0.7em;
}
.navbar-brand img {
    width: 48px;
    height: 48px;
    margin-right: 0.5em;
}
.navbar-nav {
    display: flex;
    gap: 1.5em;
    align-items: center;
    margin: 0;
    padding: 0;
}
.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1976D2;
    border-radius: 2em;
    padding: 0.5em 1.2em;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background: #e3f2fd;
    color: #43A047;
    text-decoration: underline;
}
.btn-outline-success {
    border-color: #43A047;
    color: #43A047;
    font-weight: 700;
    border-radius: 2em;
    padding: 0.5em 1.5em;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-success:hover {
    background: #43A047;
    color: #fff;
}
/* Map Container Modern Card */
.map-container {
    width: 100%;
    max-width: 900px;
    margin: 2.5rem auto 0 auto;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 4px 24px rgba(25,118,210,0.10);
    padding: 1.5em 1.5em 2em 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
iframe {
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(25,118,210,0.08);
    width: 100%;
    max-width: 850px;
    min-height: 400px;
    border: none;
}
body {
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    background: linear-gradient(120deg, #e3f2fd 0%, #f0fbfc 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
@media (max-width: 991px) {
    .map-container { max-width: 98vw; padding: 1em 0.2em; }
    iframe { max-width: 98vw; min-height: 300px; }
}
@media (max-width: 600px) {
    .navbar { flex-direction: column; padding: 1em 0.5em; border-radius: 0 0 1em 1em; }
    .navbar-nav { flex-direction: column; gap: 0.5em; }
    .navbar-brand { font-size: 1.1rem; }
    .map-container { padding: 0.5em 0.1em; }
    iframe { min-height: 220px; }
}
