.footer {
    background: rgb(237, 251, 226);
    color: rgb(47, 59, 64);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 0px;
    flex-shrink: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    gap: 120px;
}

.footer-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}

.footer-section h4 {
    color: #379237;
}

.footer-section.about-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-section.about-section p {
    flex: 1;
}

.menu-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-list a {
    color: #2F3B40;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.3em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.menu-list a.active {
    color: #379237;
}

.menu-list a:hover,
.menu-list a:focus {
    color: #379237;
}

.logo-footer {
    width: 180px;
    height: 180px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.social a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
}

.spacer {
    height: 1px;
    width: 100%;
    background-color: rgb(213, 234, 216);
    margin: 0px;
    padding: 0px;
}

.bottom {
    padding: 8px;
    text-align: center;
    font-size: 14px;
    color: #379237;
}

.bottom a {
    text-decoration: none;
    color: #379237;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section.about-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

.social a.facebook::before { content: "\f39e"; font-family: "Font Awesome 6 Brands"; color: #379237;}
.social a.instagram::before { content: "\f16d"; font-family: "Font Awesome 6 Brands"; color: #379237;}
.social a.youtube::before { content: "\f167"; font-family: "Font Awesome 6 Brands"; color: #379237;}

.social a {
    text-decoration: none;
}
