.sh-9ca503cf-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #ffffff; /* fallback */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sh-9ca503cf-logo-wrap {
    flex: 0 0 auto;
}

.sh-9ca503cf-logo {
    max-height: 150px;
    max-width: 150px;
    width: auto;
    display: block;
}

.sh-9ca503cf-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sh-9ca503cf-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.sh-9ca503cf-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: transparent;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.sh-9ca503cf-menu a:hover::after {
    width: 100%;
}

.sh-9ca503cf-btn-wrap {
    flex: 0 0 auto;
}

.sh-9ca503cf-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sh-9ca503cf-btn:hover {
    background-color: #005177;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .sh-9ca503cf-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .sh-9ca503cf-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
}