/* Footer */
footer {
    background-color: #053717;
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo,
.footer-links,
.footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: #a8e6cf;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-newsletter-form {
    display: flex;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.footer-newsletter-form button {
    background-color: #e1ebdb;
    color: #053717;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #e1ebdb;
    color: #053717;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(200px, 30vw, 180px);
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 768px) {
    .footer-image {
        right: 0px;
        bottom: 0px;
        opacity: 0.2;
    }
}