.container-footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.footer-logo {
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

.footer-section-title {
    color: #1E6091;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #EC7B37;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.footer-links a:hover {
    color: #EC7B37;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 1.1rem;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.footer-tag, .footer-fixed-tag {
    background-color: #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-tag:hover, .footer-fixed-tag:hover {
    background-color: #EC7B37;
    color: white;
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    .container-footer {
        padding: 2rem 1rem;
    }

    .footer-section-title {
        margin-top: 2rem;
    }

    .footer-links {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container-footer {
        padding: 1.5rem 1rem;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
} 