.site-footer {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background-color: #f8f8f8;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.footer-disclaimer {
    color: #000;
    line-height: 1.5;
}

.district-logo a {
    display: flex;
    align-items: right;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
}

.district-logo img {
    height: 40px;
}

.footer-right {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.follow-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #000;
    padding-right: 63px;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links img {
    height: 30px;
    transition: opacity 0.2s;
}

.social-links img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-right {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}