body {
    padding-top: 96px !important;
    padding-bottom: 88px !important;
    background: #ffffff !important;
    font-family: Arial, sans-serif;
}

/* HEADER */
#mfr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    background: #ffffff;
    border-bottom: 2px solid #c9a64d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

#mfr-header-inner {
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 18px;
}

#mfr-header img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

#mfr-header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    min-width: 0;
}

#mfr-title {
    font-size: 21px;
    font-weight: 700;
    color: #222;
    line-height: 1.15;
    margin: 0;
}

#mfr-subtitle {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
    margin-top: 3px;
}

/* FOOTER */
#mfr-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #d9d9d9;
    z-index: 99999;
    box-shadow: 0 -1px 6px rgba(0,0,0,0.04);
    padding: 6px 10px 8px;
}

#mfr-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

#mfr-footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
}

#mfr-footer-logos img {
    max-height: 26px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

#mfr-footer-text {
    text-align: center;
    font-size: 10px;
    color: #444;
    line-height: 1.25;
    max-width: 1200px;
}

/* MOBILE */
@media (max-width: 768px) {
    body {
        padding-top: 104px !important;
        padding-bottom: 120px !important;
    }

    #mfr-header {
        height: 94px;
    }

    #mfr-header-inner {
        gap: 10px;
        padding: 8px 10px;
    }

    #mfr-header img {
        max-height: 52px;
    }

    #mfr-title {
        font-size: 15px;
    }

    #mfr-subtitle {
        font-size: 11px;
    }

    #mfr-footer-logos img {
        max-height: 22px;
    }

    #mfr-footer-text {
        font-size: 10px;
        padding: 0 8px;
    }
}
