
.site-footer {
    background: var(--_primitives---colors--masala-darkest);
    border-top: 1px solid var(--_primitives---colors--masala);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
    margin-right: auto !important;
    margin-left: auto !important;
    box-sizing: border-box;
    padding-top: 5rem;
    padding-bottom: 5rem;
}


.footer-logo-link {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.legal-section {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
}

p {
    font-family: var(--_typography---font-styles--body);
    font-weight: 400;
    font-size: .875rem;
    line-height: 160%;
    color: var(--_primitives---colors--neutral);
    padding: 0;
    margin: 0 0 10px;
    text-align: justify;
}

.last-sentence-in-footer {
    margin-bottom: 0px;
}

.divider {
    height: var(--_ui-styles---stroke--divider-width);
    background-color: var(--color-scheme-1--border);
    width: 100%;
    opacity: 0.1;
}

/* Copyright styling */
.copyright {
    opacity: .6;
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
}

.copyright span {
    font-family: var(--_typography---font-styles--body);
    font-size: .875rem;
    font-weight: 200;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--_primitives---colors--neutral-lighter);
}

.footer3_legal-link {
    font-family: var(--_typography---font-styles--body);
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    color: var(--_primitives---colors--neutral-lighter);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer3_legal-link:hover {
    cursor: pointer;
    color: var(--_primitives---colors--white);
}

.no-tel,
.no-tel a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: text;
}

a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

@media (max-width: 840px) {
    .footer-container {
        width: 90%;
    }
}

/* Responsive styles */
@media screen and (max-width: 767px) {
    .footer-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
        gap: 1.5rem;
    }

    .footer-logo img {
        width: 150px;
    }


    .legal-section {
        gap: 3rem;
    }

    .copyright {
        gap: 24px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        padding-bottom: 1rem;
    }

    .copyright-text {
        margin-top: 2rem;
    }

    .footer3_legal-list {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-flow: column;
        grid-auto-flow: row;
    }

}

@media screen and (max-width: 479px) {
    .footer-container {
        width: 92%;
    }

    .footer-logo img {
        width: 140px;
    }

    p {
        font-size: .75rem;
    }

    .copyright {
        gap: 16px;
    }

    .footer3_legal-list {
        grid-template-rows: auto;
        grid-template-columns: max-content;
    }
}


