<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer .container {
    width: 80%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #28a745;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
}

.socials {
    list-style: none;
    padding: 0;
}

.socials li {
    display: inline;
    margin-right: 10px;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #28a745;
}

@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
    }
}
</pre></body></html>