.site-footer {
    background: #1d3553;
    color: #e3e1d9;
    padding: 3rem 2rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 300;
}

.footer-info,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-info h3,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-contact ul {
    list-style: none;
    line-height: 1.8;
}

.firma img {
    width: 100px;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e3e1d9;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.contact-section {
    background: #e4e1d9;
    padding: 4rem 2rem;
    font-family: "Poppins", sans-serif;
    color: #004030;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-container p {
    font-size: 1rem;
    margin-bottom: 2rem;
}