/* Site footer (main UI) */
.site-footer {
    background-color: #f4f7fd;
    padding: 48px 0 0;
    margin-top: 48px;
    color: #4b5563;
}

/* Big logo */
.site-footer__logo {
    text-align: center;
    margin-bottom: 24px;
}

.site-footer__logo img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.site-footer__divider {
    border: 0;
    border-top: 1px solid #d8e1f0;
    margin: 0 0 40px;
}

/* Columns */
.site-footer__cols {
    row-gap: 32px;
}

.site-footer__col {
    margin-bottom: 24px;
}

.site-footer__title {
    color: #111827;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Contact info */
.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer__contact i {
    color: #0c4da2;
    margin-top: 3px;
    flex-shrink: 0;
}

.site-footer__contact a,
.site-footer__contact span {
    color: #4b5563;
    text-decoration: none;
    word-break: break-word;
}

.site-footer__contact a:hover {
    color: #0c4da2;
}

/* Social icons */
.site-footer__social {
    display: flex;
    gap: 12px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #0c4da2;
    color: #ffffff;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.site-footer__social a:hover {
    background-color: #13235c;
    color: #ffffff;
}

/* Link lists */
.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li {
    margin-bottom: 14px;
}

.site-footer__links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: #0c4da2;
}

/* Payment partners */
.site-footer__payments {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.site-footer__payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 16px;
    min-width: 140px;
    min-height: 52px;
}

.site-footer__payment img {
    max-height: 32px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

/* Copyright bar */
.site-footer__bottom {
    background-color: #13235c;
    color: #ffffff;
    text-align: center;
    margin-top: 40px;
    padding: 18px 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 32px;
    }

    .site-footer__logo img {
        max-height: 90px;
    }

    .site-footer__bottom {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
}
