/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.block-footer {
    background-color: var(--color-primary);
    /* Background image properties removed (no image defined in CSS) */
    font-size: 12px;
    width: 100%;
    padding: 2px 0;
    /* Added padding for vertical spacing */
}

.content-footer {
    text-align: center;
    margin-top: 0;
    color: var(--bg-white);
}

.content-footer .row {
    min-height: 30px;
    font-size: 22px;
    margin-left: 0;

    /* Flexbox alignment */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Ensure content wraps on small screens */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .content-footer .row {
        font-size: 18px;
    }
}