.footer {
    background: linear-gradient(135deg, #2E7D32, #6CC070);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__about,
.footer__links,
.footer__contact {
    flex: 1;
    min-width: 220px;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a,
.footer__contact a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: #F4F1EB;
    text-shadow: 0 0 5px #fff;
}

.footer__social {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer__social a {
    color: #fff;
    text-decoration: none;
}

.footer__social a:hover {
    color: #F4F1EB;
}

/* Floating leaf decoration */
.footer__decor .floating-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('https://www.svgrepo.com/show/530298/leaf.svg') no-repeat center/contain;
    top: -50px;
    left: calc(var(--i) * 10%);
    animation: float 10s linear infinite;
    z-index: 1000;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(50px) rotate(20deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
}

/* Footer bottom */
.footer__copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        gap: 2rem;
    }
}   