/* New Footer Redesign */

.benefits-bar {
    background-color: #F9D800;
    color: #003B71;
    padding: 15px 0;
    font-weight: 700;
    font-size: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.benefit-item i {
    font-size: 24px;
    margin-right: 15px;
}

.benefit-text {
    line-height: 1.2;
}

.main-footer {
    background-color: #F2F2F2;
    padding: 50px 0;
    color: #333;
}

.footer-title {
    color: #003B71;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
}

.menu-column {
    flex: 1;
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column ul li {
    margin-bottom: 12px;
}

.menu-column ul li a {
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.menu-column ul li a:hover {
    color: #003B71;
    text-decoration: none;
}

.vertical-divider {
    width: 1px;
    background-color: #ccc;
    margin: 0 40px;
}

.footer-contact {
    font-size: 14px;
}

.footer-contact a {
    color: #333;
}

.social-links {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.social-links a {
    background-color: #003B71;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    color: #fff;
}

.bottom-footer {
    background-color: #003B71;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}

.bottom-footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.bottom-footer a {
    color: #fff;
    text-decoration: none;
}

.bottom-footer a:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 991px) {
    .benefits-bar .row > div {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .benefits-bar .row > div:last-child {
        border-bottom: none;
    }
    .vertical-divider {
        display: none;
    }
    .footer-menu {
        flex-direction: column;
    }
    .menu-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .benefit-item {
        justify-content: flex-start;
    }
}
