/* Footer Styles */

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dark .footer-bottom {
    border-top-color: #2d3748;
}

.legal-links {
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    line-height: 1.8;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #0366d6;
    text-decoration: underline;
}

.dark .legal-links a {
    color: #cbd5e0;
}

.dark .legal-links a:hover {
    color: #60a5fa;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

.dark .copyright {
    color: #9ca3af;
}

/* Contact Us Page */
.contact-info {
    line-height: 1.8;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Legal Pages */
.dsar-container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}

.dark .dsar-container {
    background-color: #1f2937;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
    .legal-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .legal-links a {
        display: block;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
        margin-bottom: 5px;
        width: 100%;
    }
    
    .dark .legal-links a {
        border-bottom-color: #2d3748;
    }
}