.ch-841-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f5f4ef;
    font-family: inherit;
}

.ch-841-logo img {
    max-height: 80px;
    width: auto;
}

.ch-841-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ch-841-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.ch-841-menu a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.ch-841-menu a:hover {
    color: #004b93;
}

.ch-841-socials {
    display: flex;
    gap: 15px;
}

.ch-841-social {
    color: #004b93;
    font-size: 18px;
    transition: opacity 0.3s;
}

.ch-841-social svg {
    width: 18px;
    height: 18px;
    fill: #004b93;
}

.ch-841-social:hover {
    opacity: 0.7;
}

.ch-841-btn {
    display: inline-block;
    background-color: #004b93;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.ch-841-btn:hover {
    background-color: #00366a;
    color: #fff;
}

@media (max-width: 1024px) {
    .ch-841-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .ch-841-right {
        flex-direction: column;
        gap: 20px;
    }
}