.cf-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 10px 20px;
    font-family: sans-serif;
}

.cf-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cf-left-block, .cf-right-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cf-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.cf-left-upper {
    font-weight: bold;
    font-size: 11px;
}

.cf-left-lower {
    font-weight: bold;
    font-style: italic;
    font-size: 10px;
}

.cf-right-upper {
    font-weight: bold;
    font-size: 11px;
    margin-bottom: 5px;
}

.cf-icons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.cf-icon {
    width: 24px;
    height: 24px;
}

/* Desktop layout */
@media(min-width: 768px) {
    .cf-footer {
        flex-direction: row;
        justify-content: space-between;
        height: 60px;
    }

    .cf-row {
        flex-direction: row;
        margin-bottom: 0;
    }

    .cf-left-block, .cf-right-block {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .cf-left-text {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    }

    .cf-right-upper {
        margin-right: 10px;
    }
}