.component-footer {
    padding: 1em;
    display: flex;
    background-color: var(--background-color);
    color: var(--foreground-color);
}

.component-footer > div {
    padding-block: 2em;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.component-footer > div > h2 > span {
    color: var(--foreground-color-2);
}

.component-footer > div > ul a {
    text-decoration: none;
    background-color: transparent;
    color: var(--foreground-color);
}

.component-footer > div > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.component-footer > div:nth-child(1) {
    padding-top: 0;
}

.component-footer > div:nth-child(1) > div {
    display: flex;
    align-items: center;
    gap: 2em;
}

.component-footer > div:nth-child(1) > ul {
    display: flex;
    flex-direction: row;
    gap: 1em;
    list-style-type: none;
}

.component-footer > div:nth-child(1) > ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.component-footer > div:nth-child(1) > ul li img {
    width: 100%;
    height: 100%;
}

.component-footer > div:nth-child(4) > ul li {
    display: flex;
    gap: .5em;
    align-items: center;
}

.component-footer > div:nth-child(4) .terms {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}