.footer.default {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--secondary-accent);
    color: var(--primary-white);
    padding: 24px 24px;
    border-radius: var(--default-border);
    box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.1);
}

.footer.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
}

.footer.logo-wrapper {
    width: 3rem;
    aspect-ratio: 1 / 1;
    min-width: 24px;
    min-height: 24px;
    max-width: 36px;
    max-height: 36px;
    background-image: url('../assets/brand/CertPro 512px.png');
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    border: 0.5px solid var(--primary-accent);
}

.footer.action-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

@media screen and (max-width: 478px) {
    .footer.action-wrapper {
        display: flex;
        flex-direction: column;
    }
}

.footer.list-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    gap: 12px;
    padding-left: 24px;
}

@media screen and (max-width: 478px) {
    .footer.list-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        list-style: none;
        gap: 12px;
        padding-left: 0px;
    }
}

.seperator.default.blue {
    height: 1px;
    background-color: var(--primary-accent);
    width: 75%;
}