<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.top-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    background-color: #f7f7f7;
    padding: 40px 20px;
}

.top-footer-box {
    flex: 1 1 30%;
    min-width: 250px;
}

.top-footer-box h3 {
    margin-bottom: 10px;
    color: #222;
}

.top-footer-box p {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.top-footer-box a {
    text-decoration: none;
    color: #007791;
    font-weight: bold;
}

/* Main Footer */
.footer {
    background-color: #1c1d1f;
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

/* Social Section */
.footer-social span {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.social-icons i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    color: #ccc;
}

.social-icons i:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    text-align: center;
    gap: 20px;
}

.footer-logo img {
    height: 80px;
}

.footer-language {
    background: none;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    border: none;
}
.footer-language a{
  color: #007791;
}
.footer-language a:hover{
  text-decoration: underline;
}
.footer-language i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .top-footer {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
</pre></body></html>