#topnav {
    background-color: rgb(0,40,62); /* Original color */
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    left:0px;
    top: 0px;
    z-index: 999999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    height:50px;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 70px; /* Adjust height as needed */
}

.nav-links {
    display: flex;
    gap: 20px;
	justify-content:center;
}

.nav-links a {
    color: #fff; /* Text color */
    font-size: 16px;
    text-decoration: none;
    padding: 10px 0;
}

.nav-links a:hover {    
     color:#5e6b7a !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer {
    background-color: rgb(0,40,62);
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-logo img {
    width: 380px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #aaa;
}

.footer-navigation ul {
    list-style: none;
}

.footer-navigation ul li {
    margin-bottom: 10px;
}

.footer-navigation ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-navigation ul li a:hover {
    color: red;
}

.footer-legal ul {
    list-style: none;
    margin-top: 20px;
}

.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-legal ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal ul li a:hover {
    color: #fff;
}

.footer-icons img {
    width: 50px;
    margin-right: 10px;
    margin-top: 20px;
}

.footer-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

.footer-disclaimer a {
    color: #fff;
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}
.responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    object-position: center; /* Centers the image within the container */
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-icons {
        justify-content: center;
    }
}      
       