.mainmenu-nav .mainmenu li.has-droupdown > a::after{
    right: 0;
}

.header-enrollment-strip {
    align-items: center;
    background: linear-gradient(90deg, #25214f 0%, #1d1942 100%);
    box-shadow: 0 16px 30px rgba(18, 16, 43, 0.18);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 6px 10px;
}

.header-enrollment-badge {
    background: linear-gradient(180deg, #ff674c 0%, #ff4338 100%);
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 6px 10px;
}

.header-enrollment-text {
    color: #fff;
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.header-enrollment-cta {
    background: linear-gradient(180deg, #ff674c 0%, #ff4338 100%);
    border-radius: 6px;
    color: #fff !important;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
    transition: 0.3s ease;
}

.header-enrollment-cta:hover {
    color: #fff !important;
    transform: translateY(-1px);
}

@media only screen and (max-width: 991px) {
    .header-enrollment-strip {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .header-enrollment-text {
        flex: 0 0 100%;
        order: 3;
    }
}

@media only screen and (max-width: 575px) {
    .header-enrollment-strip {
        gap: 3px 12px;
    }
}