.footer-container {
    background-color: #f5f5f5;
    padding: 32px 20px;
    font-size: 16px;
    color: #212121;
    border-top: 1px solid #e0e0e0;
    font-family: "Noto Sans", Arial, sans-serif;
    line-height: 1.6;
    position: relative;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 24px auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.footer-links a {
    color: #212121;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease-in-out;
}

.footer-links a:hover {
    text-decoration-thickness: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    flex: 1;
    font-size: 16px;
    color: #212121;
}

.footer-info a {
    color: #212121;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease-in-out;
}

.footer-info a:hover {
    text-decoration-thickness: 3px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: auto;
    min-height: 40px;
}

.footer-logo img {
    display: block;
    height: 70px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        margin-top: 10px;
    }
}
