body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header {
    background: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background: #0055a5;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.tooltip {
    position: relative;
    cursor: help;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: #0055a5;
    color: #fff;
    text-align: center;
    padding: 6px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%; 
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.container {
    width: 80%;
    margin: 30px auto;
    background: #e0ffff ;	
    padding: 20px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 15px;
    background: #003366;
    color: white;
    margin-top: 40px;
}

.row {
    display: flex;
    gap: 20px;
}

.col {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.small-h3 {
    font-size: 16px;
}

li {
    color: #0055a5; /* same blue as your navbar */
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    width: 180px;
    height: auto;
}

h2 {
	color: #0055a5	
}
