.footer {
    background-color: #111827;
    color: #e5e7eb;
    padding: 2.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
}

.footer a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer a:hover {
    color: #2563eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-item {
    line-height: 1.5;
    min-width: 180px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social img {
    width: 32px;
    /* Bigger icons */
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social img:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        margin-top: 1rem;
    }
}