.cef-container {
    background-color: #0c2f70;
    padding: 60px 40px 30px 40px;
    font-family: inherit;
    box-sizing: border-box;
}

.cef-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Branding & Socials Column */
.cef-col-branding {
    flex: 1 1 250px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cef-logo-wrapper {
    display: inline-block;
    background: #ffffff;
    padding: 10px;
    border-radius: 4px;
    max-width: fit-content;
}

.cef-logo-img {
    display: block;
    height: auto;
    object-fit: contain;
}

.cef-socials {
    display: flex;
    gap: 12px;
}

.cef-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cef-social-link i,
.cef-social-link svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Dynamic Columns */
.cef-col-dynamic {
    flex: 1 1 180px;
    margin-bottom: 30px;
}

.cef-col-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cef-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cef-item-link {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

/* Divider Line */
.cef-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 0 25px 0;
}

/* Copyright Bar */
.cef-copyright-wrapper {
    display: flex;
    justify-content: flex-end;
}

.cef-copyright {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .cef-row {
        justify-content: flex-start;
    }
    .cef-col-dynamic {
        flex: 1 1 30%;
    }
}

@media (max-width: 767px) {
    .cef-container {
        padding: 40px 20px 20px 20px;
    }
    .cef-col-branding {
        flex: 1 1 100%;
        align-items: center;
        text-align: center;
    }
    .cef-socials {
        justify-content: center;
    }
    .cef-col-dynamic {
        flex: 1 1 50%;
        text-align: center;
    }
    .cef-copyright-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cef-col-dynamic {
        flex: 1 1 100%;
    }
}
