/* Ensure both sections align horizontally */
.footer-row-equal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo alignment + same line */
.footer-box-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-box-flex {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
}

/* Unified logo size (same line visual balance) */
.footer-logo {
    height: 55px !important;
    width: auto !important;
}

/* Unified text style */
.footer-text {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}


.apldg-footer-bottom {
    background: #0d0d0d;
    padding: 25px 0;      /* increased from 15px to 35px */
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2px;     /* increased spacing above */
}
