.Footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 150px;
}

.Footer .Footer__backgroud img {
    position: absolute;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 250px;
    z-index: 1;
}

.Footer .Footer__info {
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.Footer .Footer__info .logo {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.Footer .Footer__info .Footer__info__description {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    max-width: 1000px;
}

.Footer .Footer__info .Footer__info__appDownload {
    margin-top: 20px;
    width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.Footer .Footer__info .Footer__info__appDownload img {
    width: 97px;
    cursor: pointer;
}

.Footer .Footer__info .Footer__info__button {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.Footer .Footer__info .Footer__info__button .Footer__info__button__item {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
    font-size: 600;
    margin-bottom: 20px;
}

.Footer .Footer__info .Footer__info__button .Footer__info__button__item:hover {
    color: #b78a28;
}

/* Responsive */
@media (max-width: 768px) {
    .Footer {
        margin-top: 50px;
    }

    .Footer .Footer__backgroud img {
        height: 100%;
        opacity: 0.1;
        /* Fade background on mobile if it interferes with text */
    }

    .Footer .Footer__info .Footer__info__button {
        flex-direction: column;
    }

    .Footer .Footer__info .Footer__info__button .Footer__info__button__item {
        margin-right: 0;
    }
}