footer {
    padding: 50px 0;
    background: var(--footer-gradient);
    color: #ecf0f1;
    text-align: center;
    border-top: 2px solid var(--accent-green);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-green);
    margin: 20px 0 20px 0;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;

}

.footer-link,
.footer-menu .nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0;
}

.footer-link::after,
.footer-menu .nav-link::after {
    display: none;
}

.footer-link:hover,
.footer-menu .nav-link:hover {
    color: var(--light-green);
}

.footer-info {
    max-width: 800px;
    margin: 0 auto;
}

.footer-warning {
    color: var(--warning-color);
    font-size: 14px;
    margin: 20px auto;
    line-height: 1.6;
    padding: 15px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--warning-color);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background: var(--button-gradient);
}
