﻿/* Assist bar (white section above footer) */
.assist-bar {
    background: #fff;
    padding: 26px 10px 60px 10px;
    font-weight:normal;
    font-size:14px;
}

.assist-icon {
    width: 22px;
    height: 22px;
    vertical-align: -4px;
}

.assist-phone {
    color: #2476D8;
    font-weight: 600;
}

/* Footer block */
.ract-footer {
    background: #204B87; /* your footer blue */
    color: #fff;
    padding: 70px 0 55px 0;
}

/* Social icons row */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-bottom: 34px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.15);
    transition: 0.2s ease-in-out;
}

    .social-icon:hover {
        background: rgba(255,255,255,0.3);
    }

/* Divider line */
.footer-divider {
    height: 1px;
    background: #7997BF;
    opacity: .9;
    margin: 0 auto;
    max-width: 1100px;
}

/* Bottom section */
.footer-bottom {
    padding-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-sep {
    opacity: .8;
}

.links {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

    .links:hover {
        text-decoration: underline;
        color: #fff;
    }

.footer-copy {
    text-align: center;
    opacity: .95;
}
