

/* Footer */
.footer {
    background: linear-gradient(135deg, #6B8E8E 0%, #378282 100%);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer-content {
    font-size: 0.6em;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: top;
}

.footer-info {
    align-self: flex-start;
    color: white;
    width: 100%;
    gap: 20px;
    align-items: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 70px;
    height: 35px;
    border-radius: 4px;
    transition: background-color 0.3s;
    background-image: url('/img/logo.svg');
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.footer-logo:hover {
    background-image: url('/img/logo-hover.svg');
}

.footer-links {
    align-self: flex-start;
    gap: 20px;
    display: flex;
    color: #153232;
    width: 100%;
    justify-content: right;
}

.footer a {
    color: #CCC;
    text-decoration: none;
}
.footer a:visited {
    color: #CCC;
}
.footer a:hover {
    color: white;
    text-decoration: underline;
}



