#footer {
    background: transparent;
    padding: 30px 0;
    font-size: 0.95rem;
    color: #333;
}

.footer-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-info p {
    margin: 6px 0;
    line-height: 1.5;
}

.footer-contact p {
    margin: 4px 0;
}

.footer-contact i {
    margin-right: 6px;
    color: #444;
}

.footer-contact a {
    color: #333;
    text-decoration: underline;
}

.footer-social {
    margin-top: 12px;
}

.footer-social a {
    margin: 0 8px;
    font-size: 1.4rem;
    color: #444;
}

.footer-logos {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 40px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #2c7a2c;
    text-decoration: underline;
}

/* Mobile */
@media screen and (max-width: 600px) {
    .footer-info {
        padding: 0 12px;
    }

    .footer-logos img {
        height: 32px;
    }

    .footer-social a {
        font-size: 1.2rem;
    }
}