body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

footer {
    background-color: #006161;
    color: white;
    padding: 30px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-container a {
    color: white;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline; 
}

.footer-left, .footer-links, .footer-right {
    flex: 1;
    margin: 10px;
}

.footer-logo {
    width: 300px;   
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-right iframe {
    width: 100%;
    height: 120px;
    border: none;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background: #001a3a;
}


