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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.footer-social {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.footer-copyright {
    text-align: center;
    color: #666;
    padding: 0 15px;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-social {
        gap: 20px;
    }

    .footer-logo a {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 25px 10px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-logo a {
        font-size: 18px;
    }
} 