.footer {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo a {
    color: #333;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-copyright {
    text-align: center;
    color: #666;
} 