/* --- Main wrapper --- */
.cp-footer {
    background: #ffffff;
    border-top: 1px solid #E9ECF7;
    padding: 48px 0 0 0;
}
.cp-footer-inner {
    padding-bottom: 48px;
} /* container */

/* --- Left column: company info --- */
.cp-footer-brand {
    padding-right: 32px;
} 
.cp-footer-logo img {
    height: 40px;
    margin-bottom: 24px;
}
.cp-footer-desc {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}
.cp-footer-contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.cp-footer-contact-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.cp-footer-contact-item i {
    color: #6B7280;
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.cp-footer-contact-item a {
    color: #0F44A0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}
.cp-footer-contact-item a:hover {
    color: #3B82F6;
}

.cp-footer-address-block {
    margin-bottom: 24px;
}
.cp-footer-address-label {
    display: block;
    margin-bottom: 8px;
    color: #1B2559;
    font-weight: 600;
    font-size: 14px;
}
.cp-footer-address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.cp-footer-address-item i {
    color: #6B7280;
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin-top: 4px;
}
.cp-footer-address-item p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* --- Right columns: nav link groups --- */
.cp-footer-nav-group {
    margin-bottom: 24px;
}
.cp-footer-nav-group h5 {
    color: #1B2559;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}
.cp-footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cp-footer-nav-group ul li {
    margin-bottom: 16px;
}
.cp-footer-nav-group ul li a {
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}
.cp-footer-nav-group ul li a:hover {
    color: #3B82F6;
}

/* --- Copyright bar --- */
.cp-footer-copyright {
    background: #F8F9FC;
    padding: 16px 0;
    text-align: left;
}
.cp-footer-copyright p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

/* Responsive constraints handling */
@media screen and (max-width: 991px) {
    .cp-footer-brand {
        padding-right: 15px;
    }
    .cp-footer-nav-group {
        margin-top: 24px;
    }
}
@media screen and (max-width: 767px) {
    .cp-footer-nav-group {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .cp-footer-copyright {
        text-align: center;
    }
}
@media screen and (max-width: 575px) {
    .cp-footer-nav-group {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
