.os-footer {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
    color: #333;
}

.os-footer-title {
    color: var(--os-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.os-footer-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.os-footer-social {
    display: flex;
    gap: 1rem;
}

.os-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--os-primary);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.os-social-link:hover {
    background-color: var(--os-secondary);
    color: white;
}

.os-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.os-footer-links li {
    margin-bottom: 0.75rem;
}

.os-footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.os-footer-links a:hover {
    color: var(--os-secondary);
}

.os-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.os-footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.os-footer-contact li i {
    color: var(--os-secondary);
    margin-right: 0.5rem;
    width: 20px;
}

.os-footer-divider {
    border-top: 1px solid #dee2e6;
    margin: 2rem 0;
}

.os-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #6c757d;
}

.os-footer-admin {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.os-footer-admin:hover {
    color: var(--os-secondary);
}

@media (max-width: 768px) {
    .os-footer {
        padding: 3rem 0 1.5rem;
    }

    .os-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}