.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 40px 20px;
    margin-top: 60px;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #4a90e2;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer-section ul li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.footer-section ul li:before {
    content: "•";
    color: #4a90e2;
    position: absolute;
    left: 0;
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #357abd;
    text-decoration: underline;
}

@media print {
    .site-footer {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul li {
        padding-left: 0;
    }
    
    .footer-section ul li:before {
        display: none;
    }
}
