/* Import Noto Sans font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

/* Apply styles with Noto Sans */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Noto Sans', Arial, sans-serif; /* Apply Noto Sans font to the body */
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    margin-bottom: 20px;
}

.jumbotron {
    background-color: #007bff;
    color: white;
    margin-bottom: 20px;
}

.jumbotron h1 {
    font-size: 3.5rem;
}

.container {
    flex: 1;
    margin-top: 20px;
}

h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

ul.list-unstyled {
    padding-left: 0;
    list-style: none;
}

footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

/* Dropdown hover effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

