.e4a-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    width: 100%;
}

.e4a-header-container {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    padding: 0 40px; /* Adjust left/right padding space */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    box-sizing: border-box;
}

.e4a-logo-wrapper {
    display: flex;
    align-items: center;
}

.e4a-logo-box {
    background: #0022ff;
    color: #ffd700;
    font-weight: 900;
    padding: 10px 18px;
    font-size: 18px;
    border-radius: 4px;
    letter-spacing: -0.5px;
    font-style: italic;
    box-shadow: 3px 3px 0px #000;
    text-transform: uppercase;
    display: inline-block;
}

.e4a-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.e4a-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 36px; /* Space between nav items matching target image */
}

.e4a-nav-item a {
    text-decoration: none;
    color: #0b132b;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

.e4a-nav-item.active > a,
.e4a-nav-item a:hover {
    color: #0022ff;
}

.e4a-dropdown-arrow {
    font-size: 12px;
    margin-left: 4px;
    display: inline-block;
}

.e4a-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.e4a-social-icon {
    background: #0022ff;
    color: #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.e4a-search-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #0b132b;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}