body {
    font-family: Arial, sans-serif; /* You can choose a similar font if you know it */
    background-color: #fff; /* White background */
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensure body takes full viewport height */
    display: flex; /* Use flexbox for overall layout */
    flex-direction: column;
}

.main-wrapper {
    flex-grow: 1; /* Allow the main content to take available space */
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Header Section Styling */
.header-section {
    margin-bottom: 40px; /* Space below header */
}

/* Logo Styling */
.logo-container {
    display: inline-block; /* To center align p tag below it */
    text-align: center;
}
.logo {
    max-width: 200px; /* Adjust as needed */
    height: auto;
    display: block; /* Remove extra space below img */
    margin: 0 auto; /* Center logo image */
}
.capital-text {
    font-size: 0.9em;
    letter-spacing: 5px; /* Adjust letter spacing as seen in image */
    color: #555;
    margin-top: 5px;
    font-weight: bold; /* Make it bold */
}

/* Navigation Styling */
.navbar-nav .nav-link {
    color: #666;
    font-size: 0.9em;
    font-weight: bold;
    margin-left: 25px; /* Space between nav items */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000;
}

/* City Illustration Section */
.city-illustration-section {
    flex-grow: 1; /* Allow the city section to push footer down */
    display: flex;
    align-items: center; /* Vertically center the illustration if needed */
    justify-content: center; /* Horizontally center */
    padding-top: 50px; /* Adjust space from top */
    padding-bottom: 50px; /* Adjust space from bottom */
}

.city-illustration {
    max-width: 90%; /* Adjust size of the illustration */
    height: auto;
    /* If you have an SVG, you might want to control its colors with CSS if possible */
}


/* Footer Styling */
.footer-section {
    margin-top: auto; /* Push footer to the bottom */
    padding-top: 20px;
    border-top: 1px solid #eee; /* Optional: subtle line above footer */
}

.footer-text {
    font-size: 0.8em;
    color: #999;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .header-section {
        flex-direction: column;
        text-align: center;
    }
    .header-section .col-md-6 {
        margin-bottom: 20px;
    }
    .navbar-nav {
        flex-direction: row; /* Keep nav items horizontal on small screens */
        justify-content: center;
        width: 100%; /* Ensure navbar takes full width */
    }
    .navbar-nav .nav-item {
        margin: 0 10px; /* Adjust spacing for smaller screens */
    }
    .navbar-nav .nav-link {
        margin-left: 0; /* Reset margin for mobile */
    }
}