.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h2 {
    color: #333;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

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

.social-media a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #0d47a1;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
