

footer {
    background-color: green;
    color: white;
    padding: 40px 0 20px 0;
    font-size: 0.9em;
    margin-top: 22px;
    width: 100vw;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: auto;
    max-width: 1200px;
    padding: 0 20px;
}
footer > h3{
  text-align: center;
  color: white;
}

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
}
.footer-section p{
    width: 444px;
}
.footer-section p, 
.footer-section ul {
    margin: 0;
    padding: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #01330d;
    font-weight: bold;
}

.socials a {
    margin-right: 10px;
    display: inline-block;
}

.socials img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.socials img:hover {
    filter: brightness(0) invert(0.6);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
    .footer-section p{
    width: 333px;
}
}



